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