pub struct BinaryList {
pub binaries: Vec<Binary>,
}Fields§
§binaries: Vec<Binary>Trait Implementations§
Source§impl Clone for BinaryList
impl Clone for BinaryList
Source§fn clone(&self) -> BinaryList
fn clone(&self) -> BinaryList
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 BinaryList
impl Debug for BinaryList
Source§impl<'de> Deserialize<'de> for BinaryList
impl<'de> Deserialize<'de> for BinaryList
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 BinaryList
impl RefUnwindSafe for BinaryList
impl Send for BinaryList
impl Sync for BinaryList
impl Unpin for BinaryList
impl UnsafeUnpin for BinaryList
impl UnwindSafe for BinaryList
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