pub enum ContainerRepresentation {
Full,
MinimalContainer,
ContainedIRIsOnly,
}Expand description
What portions of a container representation the client wants.
Variants§
Full
Membership triples + metadata (default).
MinimalContainer
ldp:contains + container metadata only.
ContainedIRIsOnly
Only the list of contained IRIs, no server metadata.
Trait Implementations§
Source§impl Clone for ContainerRepresentation
impl Clone for ContainerRepresentation
Source§fn clone(&self) -> ContainerRepresentation
fn clone(&self) -> ContainerRepresentation
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 ContainerRepresentation
impl Debug for ContainerRepresentation
Source§impl Default for ContainerRepresentation
impl Default for ContainerRepresentation
Source§fn default() -> ContainerRepresentation
fn default() -> ContainerRepresentation
Returns the “default value” for a type. Read more
Source§impl PartialEq for ContainerRepresentation
impl PartialEq for ContainerRepresentation
Source§fn eq(&self, other: &ContainerRepresentation) -> bool
fn eq(&self, other: &ContainerRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ContainerRepresentation
impl Eq for ContainerRepresentation
impl StructuralPartialEq for ContainerRepresentation
Auto Trait Implementations§
impl Freeze for ContainerRepresentation
impl RefUnwindSafe for ContainerRepresentation
impl Send for ContainerRepresentation
impl Sync for ContainerRepresentation
impl Unpin for ContainerRepresentation
impl UnsafeUnpin for ContainerRepresentation
impl UnwindSafe for ContainerRepresentation
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