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