pub enum BoxRepresentation {
Hydrated,
Dehydrated,
Summarized(String),
}Variants§
Trait Implementations§
Source§impl Clone for BoxRepresentation
impl Clone for BoxRepresentation
Source§fn clone(&self) -> BoxRepresentation
fn clone(&self) -> BoxRepresentation
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 BoxRepresentation
impl Debug for BoxRepresentation
impl Eq for BoxRepresentation
Source§impl PartialEq for BoxRepresentation
impl PartialEq for BoxRepresentation
impl StructuralPartialEq for BoxRepresentation
Auto Trait Implementations§
impl Freeze for BoxRepresentation
impl RefUnwindSafe for BoxRepresentation
impl Send for BoxRepresentation
impl Sync for BoxRepresentation
impl Unpin for BoxRepresentation
impl UnsafeUnpin for BoxRepresentation
impl UnwindSafe for BoxRepresentation
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