pub struct ChromeProfileInfo {
pub profile_id: String,
pub profile_path: String,
pub display_name: String,
pub is_default: bool,
}Fields§
§profile_id: String§profile_path: String§display_name: String§is_default: boolTrait Implementations§
Source§impl Clone for ChromeProfileInfo
impl Clone for ChromeProfileInfo
Source§fn clone(&self) -> ChromeProfileInfo
fn clone(&self) -> ChromeProfileInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChromeProfileInfo
impl Debug for ChromeProfileInfo
Source§impl From<ChromeProfileInfo> for ProfileInfo
impl From<ChromeProfileInfo> for ProfileInfo
Source§fn from(value: ChromeProfileInfo) -> Self
fn from(value: ChromeProfileInfo) -> Self
Converts to this type from the input type.
Source§impl From<ProfileInfo> for ChromeProfileInfo
impl From<ProfileInfo> for ChromeProfileInfo
Source§fn from(value: ProfileInfo) -> Self
fn from(value: ProfileInfo) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeProfileInfo
impl PartialEq for ChromeProfileInfo
impl Eq for ChromeProfileInfo
impl StructuralPartialEq for ChromeProfileInfo
Auto Trait Implementations§
impl Freeze for ChromeProfileInfo
impl RefUnwindSafe for ChromeProfileInfo
impl Send for ChromeProfileInfo
impl Sync for ChromeProfileInfo
impl Unpin for ChromeProfileInfo
impl UnsafeUnpin for ChromeProfileInfo
impl UnwindSafe for ChromeProfileInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more