pub struct LeaseClaim {
pub target_kind: String,
pub target: String,
pub mode: String,
}Expand description
A lease claim rendered in Mission Control.
Fields§
§target_kind: StringLease target kind: file, crate, or ide-object.
target: StringExact target string.
mode: StringLease mode.
Trait Implementations§
Source§impl Clone for LeaseClaim
impl Clone for LeaseClaim
Source§fn clone(&self) -> LeaseClaim
fn clone(&self) -> LeaseClaim
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 LeaseClaim
impl Debug for LeaseClaim
impl Eq for LeaseClaim
Source§impl PartialEq for LeaseClaim
impl PartialEq for LeaseClaim
Source§fn eq(&self, other: &LeaseClaim) -> bool
fn eq(&self, other: &LeaseClaim) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LeaseClaim
Auto Trait Implementations§
impl Freeze for LeaseClaim
impl RefUnwindSafe for LeaseClaim
impl Send for LeaseClaim
impl Sync for LeaseClaim
impl Unpin for LeaseClaim
impl UnsafeUnpin for LeaseClaim
impl UnwindSafe for LeaseClaim
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