pub struct SupportedObjectResult {
pub supported_obj_path: String,
pub access: ObjAccessType,
pub is_multi_instance: bool,
pub supported_commands: Vec<SupportedCommandResult>,
pub supported_events: Vec<SupportedEventResult>,
pub supported_params: Vec<SupportedParamResult>,
pub divergent_paths: Vec<String>,
pub unique_key_sets: Vec<SupportedUniqueKeySet>,
}Fields§
§supported_obj_path: String§access: ObjAccessType§is_multi_instance: bool§supported_commands: Vec<SupportedCommandResult>§supported_events: Vec<SupportedEventResult>§supported_params: Vec<SupportedParamResult>§divergent_paths: Vec<String>§unique_key_sets: Vec<SupportedUniqueKeySet>Trait Implementations§
Source§impl Clone for SupportedObjectResult
impl Clone for SupportedObjectResult
Source§fn clone(&self) -> SupportedObjectResult
fn clone(&self) -> SupportedObjectResult
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 SupportedObjectResult
impl Debug for SupportedObjectResult
Source§impl Default for SupportedObjectResult
impl Default for SupportedObjectResult
Source§fn default() -> SupportedObjectResult
fn default() -> SupportedObjectResult
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for SupportedObjectResult
impl<'a> MessageRead<'a> for SupportedObjectResult
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for SupportedObjectResult
impl MessageWrite for SupportedObjectResult
Source§impl PartialEq for SupportedObjectResult
impl PartialEq for SupportedObjectResult
Source§impl Serialize for SupportedObjectResult
impl Serialize for SupportedObjectResult
impl StructuralPartialEq for SupportedObjectResult
Auto Trait Implementations§
impl Freeze for SupportedObjectResult
impl RefUnwindSafe for SupportedObjectResult
impl Send for SupportedObjectResult
impl Sync for SupportedObjectResult
impl Unpin for SupportedObjectResult
impl UnwindSafe for SupportedObjectResult
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