pub struct EntityLink<B: Bmc, T: EntityTypeRef> { /* private fields */ }Expand description
Lightweight owned handle to a Redfish entity.
Holds a cloned BMC client and a NavProperty<T> without eagerly
fetching the entity. Use fetch to retrieve the
data on demand.
Operations like delete are available when the
schema type T implements the corresponding core trait.
Implementations§
Source§impl<B: Bmc, T: EntityTypeRef> EntityLink<B, T>
impl<B: Bmc, T: EntityTypeRef> EntityLink<B, T>
Auto Trait Implementations§
impl<B, T> Freeze for EntityLink<B, T>
impl<B, T> RefUnwindSafe for EntityLink<B, T>where
B: RefUnwindSafe,
T: RefUnwindSafe,
impl<B, T> Send for EntityLink<B, T>
impl<B, T> Sync for EntityLink<B, T>
impl<B, T> Unpin for EntityLink<B, T>
impl<B, T> UnsafeUnpin for EntityLink<B, T>
impl<B, T> UnwindSafe for EntityLink<B, T>where
B: RefUnwindSafe,
T: RefUnwindSafe,
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