pub struct Profile {
pub name: String,
pub uuid: String,
pub autoconnect: bool,
pub kind: String,
pub iface: Option<String>,
pub active: bool,
}Expand description
Metadata from NetworkManager (or any future connection manager).
Fields§
§name: String§uuid: StringNM connection UUID.
autoconnect: bool§kind: StringNM’s raw type string: "802-3-ethernet", "wifi", "vpn", "bridge", …
iface: Option<String>Interface this profile binds to, if any. None for VPN and unbound profiles.
active: boolWhether this profile is currently active (has an active connection in NM).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Profile
impl StructuralPartialEq for Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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