pub struct DescribeBuild {
pub root: String,
}Expand description
The tree whose build is being asked about.
Fields§
§root: StringA directory inside the project, as this machine spells it.
Not necessarily the project’s own root: a scan can be rooted at one member of a workspace, and finding the project from there is the helper’s job because it is the side that knows what a project is.
Trait Implementations§
Source§impl Clone for DescribeBuild
impl Clone for DescribeBuild
Source§fn clone(&self) -> DescribeBuild
fn clone(&self) -> DescribeBuild
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 DescribeBuild
impl Debug for DescribeBuild
Source§impl<'de> Deserialize<'de> for DescribeBuild
impl<'de> Deserialize<'de> for DescribeBuild
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
impl Eq for DescribeBuild
Source§impl PartialEq for DescribeBuild
impl PartialEq for DescribeBuild
Source§impl Serialize for DescribeBuild
impl Serialize for DescribeBuild
impl StructuralPartialEq for DescribeBuild
Auto Trait Implementations§
impl Freeze for DescribeBuild
impl RefUnwindSafe for DescribeBuild
impl Send for DescribeBuild
impl Sync for DescribeBuild
impl Unpin for DescribeBuild
impl UnsafeUnpin for DescribeBuild
impl UnwindSafe for DescribeBuild
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