pub struct IntList(pub Vec<u32>);Expand description
Wrapper for a list of integers returned from the API
Tuple Fields§
§0: Vec<u32>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IntList
impl<'de> Deserialize<'de> for IntList
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 IntList
impl RefUnwindSafe for IntList
impl Send for IntList
impl Sync for IntList
impl Unpin for IntList
impl UnwindSafe for IntList
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