pub enum BusinessIntro {
BusinessIntro(BusinessIntro),
}Expand description
Variants§
BusinessIntro(BusinessIntro)
Trait Implementations§
Source§impl Clone for BusinessIntro
impl Clone for BusinessIntro
Source§fn clone(&self) -> BusinessIntro
fn clone(&self) -> BusinessIntro
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 BusinessIntro
impl Debug for BusinessIntro
Source§impl Deserializable for BusinessIntro
impl Deserializable for BusinessIntro
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<BusinessIntro> for BusinessIntro
impl From<BusinessIntro> for BusinessIntro
Source§fn from(x: BusinessIntro) -> Self
fn from(x: BusinessIntro) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BusinessIntro
impl PartialEq for BusinessIntro
Source§impl Serializable for BusinessIntro
impl Serializable for BusinessIntro
Source§impl TryFrom<BusinessIntro> for BusinessIntro
impl TryFrom<BusinessIntro> for BusinessIntro
Source§type Error = BusinessIntro
type Error = BusinessIntro
The type returned in the event of a conversion error.
impl StructuralPartialEq for BusinessIntro
Auto Trait Implementations§
impl Freeze for BusinessIntro
impl RefUnwindSafe for BusinessIntro
impl Send for BusinessIntro
impl Sync for BusinessIntro
impl Unpin for BusinessIntro
impl UnsafeUnpin for BusinessIntro
impl UnwindSafe for BusinessIntro
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