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