pub enum InputBusinessIntro {
InputBusinessIntro(InputBusinessIntro),
}Expand description
Variants§
InputBusinessIntro(InputBusinessIntro)
Trait Implementations§
Source§impl Clone for InputBusinessIntro
impl Clone for InputBusinessIntro
Source§fn clone(&self) -> InputBusinessIntro
fn clone(&self) -> InputBusinessIntro
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InputBusinessIntro
impl Debug for InputBusinessIntro
Source§impl Deserializable for InputBusinessIntro
impl Deserializable for InputBusinessIntro
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputBusinessIntro> for InputBusinessIntro
impl From<InputBusinessIntro> for InputBusinessIntro
Source§fn from(x: InputBusinessIntro) -> Self
fn from(x: InputBusinessIntro) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputBusinessIntro
impl PartialEq for InputBusinessIntro
Source§impl Serializable for InputBusinessIntro
impl Serializable for InputBusinessIntro
Source§impl TryFrom<InputBusinessIntro> for InputBusinessIntro
impl TryFrom<InputBusinessIntro> for InputBusinessIntro
Source§type Error = InputBusinessIntro
type Error = InputBusinessIntro
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputBusinessIntro
Auto Trait Implementations§
impl Freeze for InputBusinessIntro
impl RefUnwindSafe for InputBusinessIntro
impl Send for InputBusinessIntro
impl Sync for InputBusinessIntro
impl Unpin for InputBusinessIntro
impl UnsafeUnpin for InputBusinessIntro
impl UnwindSafe for InputBusinessIntro
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