pub struct Accessory {
pub aid: u64,
pub services: Vec<Service>,
}Expand description
One accessory in the bridge/accessory database.
Fields§
§aid: u64Accessory instance id (unique within the response).
services: Vec<Service>The accessory’s services.
Trait Implementations§
impl StructuralPartialEq for Accessory
Auto Trait Implementations§
impl Freeze for Accessory
impl RefUnwindSafe for Accessory
impl Send for Accessory
impl Sync for Accessory
impl Unpin for Accessory
impl UnsafeUnpin for Accessory
impl UnwindSafe for Accessory
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