pub struct ReleaseDep {
pub name: String,
pub version: Version,
pub binary: PathBuf,
}Expand description
表示一个 release 依赖项
Fields§
§name: String包名
version: Version版本号
binary: PathBuf二进制文件路径
Trait Implementations§
Source§impl Clone for ReleaseDep
impl Clone for ReleaseDep
Source§fn clone(&self) -> ReleaseDep
fn clone(&self) -> ReleaseDep
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 moreAuto Trait Implementations§
impl Freeze for ReleaseDep
impl RefUnwindSafe for ReleaseDep
impl Send for ReleaseDep
impl Sync for ReleaseDep
impl Unpin for ReleaseDep
impl UnsafeUnpin for ReleaseDep
impl UnwindSafe for ReleaseDep
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