#[non_exhaustive]pub struct NetworkProfileLocation {
pub name: Option<String>,
pub scope: Option<Scope>,
/* private fields */
}Available on crate feature
network-profiles only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>§scope: Option<Scope>Implementations§
Source§impl NetworkProfileLocation
impl NetworkProfileLocation
Trait Implementations§
Source§impl Clone for NetworkProfileLocation
impl Clone for NetworkProfileLocation
Source§fn clone(&self) -> NetworkProfileLocation
fn clone(&self) -> NetworkProfileLocation
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 NetworkProfileLocation
impl Debug for NetworkProfileLocation
Source§impl Default for NetworkProfileLocation
impl Default for NetworkProfileLocation
Source§fn default() -> NetworkProfileLocation
fn default() -> NetworkProfileLocation
Returns the “default value” for a type. Read more
Source§impl Message for NetworkProfileLocation
impl Message for NetworkProfileLocation
Source§impl PartialEq for NetworkProfileLocation
impl PartialEq for NetworkProfileLocation
impl StructuralPartialEq for NetworkProfileLocation
Auto Trait Implementations§
impl Freeze for NetworkProfileLocation
impl RefUnwindSafe for NetworkProfileLocation
impl Send for NetworkProfileLocation
impl Sync for NetworkProfileLocation
impl Unpin for NetworkProfileLocation
impl UnwindSafe for NetworkProfileLocation
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