[][src]Struct protosocks::AuthReplyPacket

pub struct AuthReplyPacket<T: AsRef<[u8]>> { /* fields omitted */ }

Implementations

impl<T: AsRef<[u8]>> ReplyPacket<T>[src]

pub fn new_unchecked(buffer: T) -> ReplyPacket<T>[src]

Imbue a raw octet buffer with RFC1929 packet structure.

pub fn new_checked(buffer: T) -> Result<ReplyPacket<T>, Error>[src]

Shorthand for a combination of new_unchecked and check_len.

pub fn check_len(&self) -> Result<(), Error>[src]

Ensure that no accessor method will panic if called. Returns Err(Error::Truncated) if the buffer is too short.

pub fn total_len(&self) -> usize[src]

Return the length.

pub fn version(&self) -> u8[src]

Return the version field.

pub fn status(&self) -> u8[src]

Return the status.

pub fn take_buffer(self) -> T[src]

impl<T: AsRef<[u8]> + AsMut<[u8]>> ReplyPacket<T>[src]

pub fn set_version(&mut self, value: u8)[src]

Set the version field.

pub fn set_status(&mut self, value: u8)[src]

Set the status.

Trait Implementations

impl<T: AsRef<[u8]>> AsRef<[u8]> for ReplyPacket<T>[src]

impl<T: Clone + AsRef<[u8]>> Clone for ReplyPacket<T>[src]

impl<T: Debug + AsRef<[u8]>> Debug for ReplyPacket<T>[src]

impl<T: PartialEq + AsRef<[u8]>> PartialEq<ReplyPacket<T>> for ReplyPacket<T>[src]

impl<T: AsRef<[u8]>> StructuralPartialEq for ReplyPacket<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ReplyPacket<T> where
    T: RefUnwindSafe

impl<T> Send for ReplyPacket<T> where
    T: Send

impl<T> Sync for ReplyPacket<T> where
    T: Sync

impl<T> Unpin for ReplyPacket<T> where
    T: Unpin

impl<T> UnwindSafe for ReplyPacket<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.