pub enum ListingState {
Complete,
Limited {
limit: usize,
},
Failed {
message: String,
},
}Variants§
Implementations§
Source§impl ListingState
impl ListingState
pub fn is_complete(&self) -> bool
Trait Implementations§
Source§impl Clone for ListingState
impl Clone for ListingState
Source§fn clone(&self) -> ListingState
fn clone(&self) -> ListingState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListingState
impl Debug for ListingState
Source§impl<'de> Deserialize<'de> for ListingState
impl<'de> Deserialize<'de> for ListingState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ListingState
Source§impl PartialEq for ListingState
impl PartialEq for ListingState
Source§impl Serialize for ListingState
impl Serialize for ListingState
impl StructuralPartialEq for ListingState
Auto Trait Implementations§
impl Freeze for ListingState
impl RefUnwindSafe for ListingState
impl Send for ListingState
impl Sync for ListingState
impl Unpin for ListingState
impl UnsafeUnpin for ListingState
impl UnwindSafe for ListingState
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