pub struct Collections {
pub links: Links,
pub time_stamp: Option<String>,
pub number_matched: Option<u64>,
pub number_returned: Option<u64>,
pub collections: Vec<Collection>,
pub crs: Vec<Crs>,
}Fields§
§links: Links§time_stamp: Option<String>§number_matched: Option<u64>§number_returned: Option<u64>§collections: Vec<Collection>§crs: Vec<Crs>Implementations§
Source§impl Collections
impl Collections
pub fn new(collections: Vec<Collection>) -> Self
Trait Implementations§
Source§impl Clone for Collections
impl Clone for Collections
Source§fn clone(&self) -> Collections
fn clone(&self) -> Collections
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 Collections
impl Debug for Collections
Source§impl<'de> Deserialize<'de> for Collections
impl<'de> Deserialize<'de> for Collections
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
Source§impl PartialEq for Collections
impl PartialEq for Collections
Source§impl Serialize for Collections
impl Serialize for Collections
impl StructuralPartialEq for Collections
Auto Trait Implementations§
impl Freeze for Collections
impl RefUnwindSafe for Collections
impl Send for Collections
impl Sync for Collections
impl Unpin for Collections
impl UnwindSafe for Collections
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