pub struct InventoryCompleted {
pub complete: bool,
pub cancelled: bool,
pub truncated: bool,
pub warning: Option<String>,
pub capabilities: BrowseCapabilities,
}Expand description
Terminal result for one inventory operation.
Fields§
§complete: bool§cancelled: bool§truncated: bool§warning: Option<String>§capabilities: BrowseCapabilitiesTrait Implementations§
Source§impl Clone for InventoryCompleted
impl Clone for InventoryCompleted
Source§fn clone(&self) -> InventoryCompleted
fn clone(&self) -> InventoryCompleted
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InventoryCompleted
impl Debug for InventoryCompleted
impl Eq for InventoryCompleted
Source§impl PartialEq for InventoryCompleted
impl PartialEq for InventoryCompleted
impl StructuralPartialEq for InventoryCompleted
Auto Trait Implementations§
impl Freeze for InventoryCompleted
impl RefUnwindSafe for InventoryCompleted
impl Send for InventoryCompleted
impl Sync for InventoryCompleted
impl Unpin for InventoryCompleted
impl UnsafeUnpin for InventoryCompleted
impl UnwindSafe for InventoryCompleted
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