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