pub struct WorkspaceRepo {
pub path: String,
pub name: String,
}Expand description
A code repo entry in the workspace manifest.
Fields§
§path: StringDirectory name (relative to workspace root)
name: StringOptional display name
Trait Implementations§
Source§impl Clone for WorkspaceRepo
impl Clone for WorkspaceRepo
Source§fn clone(&self) -> WorkspaceRepo
fn clone(&self) -> WorkspaceRepo
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 WorkspaceRepo
impl Debug for WorkspaceRepo
Source§impl<'de> Deserialize<'de> for WorkspaceRepo
impl<'de> Deserialize<'de> for WorkspaceRepo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WorkspaceRepo
impl RefUnwindSafe for WorkspaceRepo
impl Send for WorkspaceRepo
impl Sync for WorkspaceRepo
impl Unpin for WorkspaceRepo
impl UnsafeUnpin for WorkspaceRepo
impl UnwindSafe for WorkspaceRepo
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