pub struct BlobScopeList {
pub scopes: Vec<ScopeInfo>,
pub total: usize,
pub truncated: bool,
}Expand description
Result of Request::BlobList: the daemon’s scopes. Additive-only.
Fields§
§scopes: Vec<ScopeInfo>§total: usizeScopes matching the filter BEFORE limit/offset (#84b). Without this you cannot tell a
complete answer from a clipped one.
truncated: boolTrue when more scopes matched than were returned. Page with offset to see the rest.
Trait Implementations§
Source§impl Clone for BlobScopeList
impl Clone for BlobScopeList
Source§fn clone(&self) -> BlobScopeList
fn clone(&self) -> BlobScopeList
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 BlobScopeList
impl Debug for BlobScopeList
Source§impl<'de> Deserialize<'de> for BlobScopeList
impl<'de> Deserialize<'de> for BlobScopeList
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 Eq for BlobScopeList
Source§impl PartialEq for BlobScopeList
impl PartialEq for BlobScopeList
Source§impl Serialize for BlobScopeList
impl Serialize for BlobScopeList
impl StructuralPartialEq for BlobScopeList
Auto Trait Implementations§
impl Freeze for BlobScopeList
impl RefUnwindSafe for BlobScopeList
impl Send for BlobScopeList
impl Sync for BlobScopeList
impl Unpin for BlobScopeList
impl UnsafeUnpin for BlobScopeList
impl UnwindSafe for BlobScopeList
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