pub struct VersionValue<'a> { /* private fields */ }
Implementations§
Source§impl<'a> VersionValue<'a>
impl<'a> VersionValue<'a>
Trait Implementations§
Source§impl<'a> Clone for VersionValue<'a>
impl<'a> Clone for VersionValue<'a>
Source§fn clone(&self) -> VersionValue<'a>
fn clone(&self) -> VersionValue<'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 VersionValue<'a>
impl<'a> Debug for VersionValue<'a>
Source§impl<'a> Default for VersionValue<'a>
impl<'a> Default for VersionValue<'a>
Source§impl<'a> Display for VersionValue<'a>
impl<'a> Display for VersionValue<'a>
Source§impl<'a> HeaderValue for VersionValue<'a>
impl<'a> HeaderValue for VersionValue<'a>
const OWNED: bool = true
type OwnedValue = StompVersion
type Value = StompVersion
fn header_name(&self) -> &str
Source§impl<'a> Into<StompVersion> for VersionValue<'a>
impl<'a> Into<StompVersion> for VersionValue<'a>
Source§fn into(self) -> StompVersion
fn into(self) -> StompVersion
Converts this type into the (usually inferred) input type.
Source§impl<'a> PartialEq for VersionValue<'a>
impl<'a> PartialEq for VersionValue<'a>
impl<'a> Eq for VersionValue<'a>
impl<'a> StructuralPartialEq for VersionValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for VersionValue<'a>
impl<'a> RefUnwindSafe for VersionValue<'a>
impl<'a> Send for VersionValue<'a>
impl<'a> Sync for VersionValue<'a>
impl<'a> Unpin for VersionValue<'a>
impl<'a> UnwindSafe for VersionValue<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more