pub struct Unsupported<'a>(/* private fields */);Expand description
This tracker type is unknown/unsupported.
Implementations§
Source§impl<'a> Unsupported<'a>
impl<'a> Unsupported<'a>
pub fn new(value: impl Into<Cow<'a, [u8]>>) -> Self
Sourcepub fn into_owned(self) -> Unsupported<'static>
pub fn into_owned(self) -> Unsupported<'static>
Returns a 'static version of self.
Trait Implementations§
Source§impl<'a> Clone for Unsupported<'a>
impl<'a> Clone for Unsupported<'a>
Source§fn clone(&self) -> Unsupported<'a>
fn clone(&self) -> Unsupported<'a>
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<'a> Debug for Unsupported<'a>
impl<'a> Debug for Unsupported<'a>
Source§impl<'a> Hash for Unsupported<'a>
impl<'a> Hash for Unsupported<'a>
Source§impl<'de> MyDeserialize<'de> for Unsupported<'de>
impl<'de> MyDeserialize<'de> for Unsupported<'de>
Source§impl MySerialize for Unsupported<'_>
impl MySerialize for Unsupported<'_>
Source§impl<'a> PartialEq for Unsupported<'a>
impl<'a> PartialEq for Unsupported<'a>
impl<'a> Eq for Unsupported<'a>
impl<'a> StructuralPartialEq for Unsupported<'a>
Auto Trait Implementations§
impl<'a> Freeze for Unsupported<'a>
impl<'a> RefUnwindSafe for Unsupported<'a>
impl<'a> Send for Unsupported<'a>
impl<'a> Sync for Unsupported<'a>
impl<'a> Unpin for Unsupported<'a>
impl<'a> UnwindSafe for Unsupported<'a>
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