Enum StatusCodeKind

Source
pub enum StatusCodeKind {
Show 22 variants TransferStarted, TransferAboutToStart, Ok, FeatureNotImplemented, SystemStatus, HelpMessage, NameSystemType, ReadyForNewUser, ClosingControlConnection, RequestActionCompleted, UserLoggedIn, EnteredPassiveMode, EnteredExtendedPassiveMode, RequestFileActionCompleted, PathCreated, PasswordRequired, RequestActionPending, CommandUnrecognized, SecurityMechanismNotImplemented, RequestActionDenied, FileNameNotAllowed, Unknown,
}
Expand description

Represent a textual interpretation of a particular status code, most were taken from RFC 959.

Variants§

§

TransferStarted

Status code 125

§

TransferAboutToStart

Status code 150

§

Ok

Status code 200

§

FeatureNotImplemented

Status code 202

§

SystemStatus

Status code 211,

§

HelpMessage

Status code 214

§

NameSystemType

Status code 215

§

ReadyForNewUser

Status code 220

§

ClosingControlConnection

Status code 221

§

RequestActionCompleted

Status code 226

§

UserLoggedIn

Status code 230

§

EnteredPassiveMode

Status code 227

§

EnteredExtendedPassiveMode

Status code 229

§

RequestFileActionCompleted

Status code 250

§

PathCreated

Status code 257

§

PasswordRequired

Status code 331

§

RequestActionPending

Status code 350

§

CommandUnrecognized

Status code 500

§

SecurityMechanismNotImplemented

Status code 504

§

RequestActionDenied

Status code 550

§

FileNameNotAllowed

Status code 553

§

Unknown

Status code not expected by any implementation on this crate.

Trait Implementations§

Source§

impl Debug for StatusCodeKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<u16> for StatusCodeKind

Source§

fn from(code: u16) -> StatusCodeKind

Converts to this type from the input type.
Source§

impl PartialEq for StatusCodeKind

Source§

fn eq(&self, other: &StatusCodeKind) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for StatusCodeKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.