struct YSTBArg {
base: YSTBArgBase,
data: Vec<u8>,
encoding: Encoding,
}Available on crate feature
yuris only.Fields§
§base: YSTBArgBase§data: Vec<u8>§encoding: EncodingTrait Implementations§
Source§impl<'de> Deserialize<'de> for YSTBArg
impl<'de> Deserialize<'de> for YSTBArg
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
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 StructUnpack for YSTBArg
impl StructUnpack for YSTBArg
Source§impl<'a> TryFrom<&'a YSTBArg> for YSTBArgTmp
impl<'a> TryFrom<&'a YSTBArg> for YSTBArgTmp
Source§impl TryFrom<YSTBArgTmp> for YSTBArg
impl TryFrom<YSTBArgTmp> for YSTBArg
Auto Trait Implementations§
impl Freeze for YSTBArg
impl RefUnwindSafe for YSTBArg
impl Send for YSTBArg
impl Sync for YSTBArg
impl Unpin for YSTBArg
impl UnwindSafe for YSTBArg
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