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