pub struct BinaryPackage {
pub name: String,
pub arch: String,
pub current_version: Option<String>,
pub candidate_version: Option<String>,
}Fields§
§name: String§arch: String§current_version: Option<String>§candidate_version: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for BinaryPackage
impl Clone for BinaryPackage
Source§fn clone(&self) -> BinaryPackage
fn clone(&self) -> BinaryPackage
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 BinaryPackage
impl Debug for BinaryPackage
Auto Trait Implementations§
impl Freeze for BinaryPackage
impl RefUnwindSafe for BinaryPackage
impl Send for BinaryPackage
impl Sync for BinaryPackage
impl Unpin for BinaryPackage
impl UnwindSafe for BinaryPackage
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