pub enum EmbeddedHttpKind {
Request,
Response,
}Expand description
The type of embedded HTTP message carried by an ICAP request.
Variants§
Request
Embedded HTTP request (req-hdr / req-body).
Response
Embedded HTTP response (res-hdr / res-body).
Trait Implementations§
Source§impl Clone for EmbeddedHttpKind
impl Clone for EmbeddedHttpKind
Source§fn clone(&self) -> EmbeddedHttpKind
fn clone(&self) -> EmbeddedHttpKind
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 moreimpl Copy for EmbeddedHttpKind
Source§impl Debug for EmbeddedHttpKind
impl Debug for EmbeddedHttpKind
impl Eq for EmbeddedHttpKind
Source§impl PartialEq for EmbeddedHttpKind
impl PartialEq for EmbeddedHttpKind
impl StructuralPartialEq for EmbeddedHttpKind
Auto Trait Implementations§
impl Freeze for EmbeddedHttpKind
impl RefUnwindSafe for EmbeddedHttpKind
impl Send for EmbeddedHttpKind
impl Sync for EmbeddedHttpKind
impl Unpin for EmbeddedHttpKind
impl UnsafeUnpin for EmbeddedHttpKind
impl UnwindSafe for EmbeddedHttpKind
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