pub struct NestedWirelessLink {
pub id: Option<i32>,
pub url: Option<String>,
pub display_url: Option<String>,
pub display: Option<String>,
pub ssid: Option<String>,
}Expand description
NestedWirelessLink : Represents an object related through a ForeignKey field. On write, it accepts a primary key (PK) value or a dictionary of attributes which can be used to uniquely identify the related object. This class should be subclassed to return a full representation of the related object on read.
Fields§
§id: Option<i32>§url: Option<String>§display_url: Option<String>§display: Option<String>§ssid: Option<String>Implementations§
Source§impl NestedWirelessLink
impl NestedWirelessLink
Sourcepub fn new() -> NestedWirelessLink
pub fn new() -> NestedWirelessLink
Represents an object related through a ForeignKey field. On write, it accepts a primary key (PK) value or a dictionary of attributes which can be used to uniquely identify the related object. This class should be subclassed to return a full representation of the related object on read.
Trait Implementations§
Source§impl Clone for NestedWirelessLink
impl Clone for NestedWirelessLink
Source§fn clone(&self) -> NestedWirelessLink
fn clone(&self) -> NestedWirelessLink
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 NestedWirelessLink
impl Debug for NestedWirelessLink
Source§impl Default for NestedWirelessLink
impl Default for NestedWirelessLink
Source§fn default() -> NestedWirelessLink
fn default() -> NestedWirelessLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NestedWirelessLink
impl<'de> Deserialize<'de> for NestedWirelessLink
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
Source§impl PartialEq for NestedWirelessLink
impl PartialEq for NestedWirelessLink
Source§impl Serialize for NestedWirelessLink
impl Serialize for NestedWirelessLink
impl StructuralPartialEq for NestedWirelessLink
Auto Trait Implementations§
impl Freeze for NestedWirelessLink
impl RefUnwindSafe for NestedWirelessLink
impl Send for NestedWirelessLink
impl Sync for NestedWirelessLink
impl Unpin for NestedWirelessLink
impl UnwindSafe for NestedWirelessLink
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