pub struct BinaryPackage {
pub bin_target: Option<String>,
pub package: String,
pub locked: Option<bool>,
pub version: String,
pub git: Option<String>,
pub branch: Option<String>,
pub tag: Option<String>,
pub rev: Option<String>,
pub path: Option<String>,
pub default_features: Option<bool>,
pub features: Option<Vec<String>>,
}Fields§
§bin_target: Option<String>§package: String§locked: Option<bool>§version: String§git: Option<String>§branch: Option<String>§tag: Option<String>§rev: Option<String>§path: Option<String>§default_features: Option<bool>§features: Option<Vec<String>>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 moreAuto 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more