pub struct PlusReply {
pub header: PlusHeader,
pub body: Vec<u8>,
}Expand description
A Gopher+ reply: the header the server declared, and the body with any period terminator removed.
Fields§
§header: PlusHeader§body: Vec<u8>Trait Implementations§
impl Eq for PlusReply
impl StructuralPartialEq for PlusReply
Auto Trait Implementations§
impl Freeze for PlusReply
impl RefUnwindSafe for PlusReply
impl Send for PlusReply
impl Sync for PlusReply
impl Unpin for PlusReply
impl UnsafeUnpin for PlusReply
impl UnwindSafe for PlusReply
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