pub struct LwM2MSpec {
pub objects: Vec<Object>,
}Expand description
Represents a LwM2M object specification file.
Fields§
§objects: Vec<Object>List of all specified objects in the file Note: Usually a spec file contains only one object definition.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LwM2MSpec
impl<'de> Deserialize<'de> for LwM2MSpec
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 StructuralPartialEq for LwM2MSpec
Auto Trait Implementations§
impl Freeze for LwM2MSpec
impl RefUnwindSafe for LwM2MSpec
impl Send for LwM2MSpec
impl Sync for LwM2MSpec
impl Unpin for LwM2MSpec
impl UnwindSafe for LwM2MSpec
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