pub struct ReplyTo(/* private fields */);Expand description
Lightweight Reply-To header wrapper.
Implementations§
Source§impl ReplyTo
impl ReplyTo
Sourcepub fn new(value: impl AsRef<str>) -> Result<Self, HeaderParseError>
pub fn new(value: impl AsRef<str>) -> Result<Self, HeaderParseError>
Creates a typed header wrapper.
Sourcepub const fn value(&self) -> &HeaderValue
pub const fn value(&self) -> &HeaderValue
Returns the header value.
Sourcepub fn field(&self) -> HeaderField
pub fn field(&self) -> HeaderField
Converts this wrapper into a header field.
Trait Implementations§
Source§impl Ord for ReplyTo
impl Ord for ReplyTo
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ReplyTo
impl PartialOrd for ReplyTo
impl Eq for ReplyTo
impl StructuralPartialEq for ReplyTo
Auto Trait Implementations§
impl Freeze for ReplyTo
impl RefUnwindSafe for ReplyTo
impl Send for ReplyTo
impl Sync for ReplyTo
impl Unpin for ReplyTo
impl UnsafeUnpin for ReplyTo
impl UnwindSafe for ReplyTo
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