pub struct PipEditableInstall { /* private fields */ }Expand description
pip editable install metadata.
Implementations§
Source§impl PipEditableInstall
impl PipEditableInstall
Sourcepub const fn new(target: PipInstallTarget) -> PipEditableInstall
pub const fn new(target: PipInstallTarget) -> PipEditableInstall
Creates editable install metadata.
Sourcepub const fn target(&self) -> &PipInstallTarget
pub const fn target(&self) -> &PipInstallTarget
Returns the editable target.
Sourcepub const fn is_editable(&self) -> bool
pub const fn is_editable(&self) -> bool
Returns true for editable install metadata.
Trait Implementations§
Source§impl Clone for PipEditableInstall
impl Clone for PipEditableInstall
Source§fn clone(&self) -> PipEditableInstall
fn clone(&self) -> PipEditableInstall
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 PipEditableInstall
impl Debug for PipEditableInstall
Source§impl PartialEq for PipEditableInstall
impl PartialEq for PipEditableInstall
Source§fn eq(&self, other: &PipEditableInstall) -> bool
fn eq(&self, other: &PipEditableInstall) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PipEditableInstall
impl StructuralPartialEq for PipEditableInstall
Auto Trait Implementations§
impl Freeze for PipEditableInstall
impl RefUnwindSafe for PipEditableInstall
impl Send for PipEditableInstall
impl Sync for PipEditableInstall
impl Unpin for PipEditableInstall
impl UnsafeUnpin for PipEditableInstall
impl UnwindSafe for PipEditableInstall
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