pub enum WrappedResponse {
Ok,
ListAllInfo(ListallinfoResponse),
Tracks(Vec<Track>),
Listall(ListallResponse),
Subsystem(Subsystem),
DatabaseVersion(DatabaseVersion),
Status(Status),
Stats(Stats),
}
Expand description
A Enum-wrapped response
Variants§
Ok
ListAllInfo(ListallinfoResponse)
Tracks(Vec<Track>)
Listall(ListallResponse)
Subsystem(Subsystem)
DatabaseVersion(DatabaseVersion)
Status(Status)
Stats(Stats)
Trait Implementations§
Source§impl From<()> for WrappedResponse
impl From<()> for WrappedResponse
Source§impl From<DatabaseVersion> for WrappedResponse
impl From<DatabaseVersion> for WrappedResponse
Source§fn from(d: DatabaseVersion) -> Self
fn from(d: DatabaseVersion) -> Self
Converts to this type from the input type.
Source§impl From<Stats> for WrappedResponse
impl From<Stats> for WrappedResponse
Source§impl From<Status> for WrappedResponse
impl From<Status> for WrappedResponse
Source§impl From<Subsystem> for WrappedResponse
impl From<Subsystem> for WrappedResponse
Auto Trait Implementations§
impl Freeze for WrappedResponse
impl RefUnwindSafe for WrappedResponse
impl Send for WrappedResponse
impl Sync for WrappedResponse
impl Unpin for WrappedResponse
impl UnwindSafe for WrappedResponse
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more