pub struct CollectorsOutput {
pub seed: SeedAlbum,
pub collectors_discovered: usize,
pub collectors: Vec<Collector>,
}Fields§
§seed: SeedAlbum§collectors_discovered: usize§collectors: Vec<Collector>Trait Implementations§
Source§impl Clone for CollectorsOutput
impl Clone for CollectorsOutput
Source§fn clone(&self) -> CollectorsOutput
fn clone(&self) -> CollectorsOutput
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 CollectorsOutput
impl Debug for CollectorsOutput
Source§impl<'de> Deserialize<'de> for CollectorsOutput
impl<'de> Deserialize<'de> for CollectorsOutput
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
Auto Trait Implementations§
impl Freeze for CollectorsOutput
impl RefUnwindSafe for CollectorsOutput
impl Send for CollectorsOutput
impl Sync for CollectorsOutput
impl Unpin for CollectorsOutput
impl UnsafeUnpin for CollectorsOutput
impl UnwindSafe for CollectorsOutput
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