pub enum RawContents {
Json(Value),
InvalidJson(String),
}Variants§
Trait Implementations§
Source§impl Clone for RawContents
impl Clone for RawContents
Source§fn clone(&self) -> RawContents
fn clone(&self) -> RawContents
Returns a duplicate of the value. Read more
1.0.0 · 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 RawContents
impl Debug for RawContents
Source§impl PartialEq for RawContents
impl PartialEq for RawContents
impl StructuralPartialEq for RawContents
Auto Trait Implementations§
impl Freeze for RawContents
impl RefUnwindSafe for RawContents
impl Send for RawContents
impl Sync for RawContents
impl Unpin for RawContents
impl UnsafeUnpin for RawContents
impl UnwindSafe for RawContents
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