Enum Response

Source
pub enum Response {
    Version(VersionRes),
    GetChannelInfoAll(GetChannelInfoAllRes),
    ItemValueSignIn(ItemValueSignInRes),
    ItemValue(ItemValueRes),
    ProjectList(ProjectListRes),
    ItemUpdate(ItemUpdateInd),
    Unknown(UnknownRes),
}

Variants§

§

Version(VersionRes)

§

GetChannelInfoAll(GetChannelInfoAllRes)

§

ItemValueSignIn(ItemValueSignInRes)

§

ItemValue(ItemValueRes)

§

ProjectList(ProjectListRes)

§

ItemUpdate(ItemUpdateInd)

§

Unknown(UnknownRes)

Implementations§

Source§

impl Response

Source

pub fn is_version(&self) -> bool

Source

pub fn is_get_channel_info_all(&self) -> bool

Source

pub fn is_item_value_sign_in(&self) -> bool

Source

pub fn is_item_value(&self) -> bool

Source

pub fn is_project_list(&self) -> bool

Source

pub fn is_item_update(&self) -> bool

Source

pub fn is_unknown(&self) -> bool

Source§

impl Response

Source

pub fn kind(&self) -> ResponseKind

Trait Implementations§

Source§

impl Debug for Response

Source§

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

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

impl<'de> Deserialize<'de> for Response

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'__enum_kinds1> From<&'__enum_kinds1 Response> for ResponseKind

Source§

fn from(_value: &'__enum_kinds1 Response) -> Self

Converts to this type from the input type.
Source§

impl From<GetChannelInfoAllRes> for Response

Source§

fn from(original: GetChannelInfoAllRes) -> Response

Converts to this type from the input type.
Source§

impl From<ItemUpdateInd> for Response

Source§

fn from(original: ItemUpdateInd) -> Response

Converts to this type from the input type.
Source§

impl From<ItemValueRes> for Response

Source§

fn from(original: ItemValueRes) -> Response

Converts to this type from the input type.
Source§

impl From<ItemValueSignInRes> for Response

Source§

fn from(original: ItemValueSignInRes) -> Response

Converts to this type from the input type.
Source§

impl From<ProjectListRes> for Response

Source§

fn from(original: ProjectListRes) -> Response

Converts to this type from the input type.
Source§

impl<'__enum_kinds1> From<Response> for ResponseKind

Source§

fn from(value: Response) -> Self

Converts to this type from the input type.
Source§

impl From<UnknownRes> for Response

Source§

fn from(original: UnknownRes) -> Response

Converts to this type from the input type.
Source§

impl From<VersionRes> for Response

Source§

fn from(original: VersionRes) -> Response

Converts to this type from the input type.
Source§

impl TryFrom<Response> for GetChannelInfoAllRes

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Response> for ItemUpdateInd

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Response> for ItemValueRes

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Response> for ItemValueSignInRes

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Response> for ProjectListRes

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Response> for VersionRes

Source§

type Error = Response

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

fn try_from(value: Response) -> Result<Self, Self::Error>

Performs the conversion.

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,