pub struct Survey {
pub group: GroupKind,
pub name: String,
pub root: String,
pub crates: Vec<CrateNode>,
}Expand description
A complete survey graph.
Fields§
§group: GroupKindThe contextual group type this survey was built under.
name: StringWorkspace (or lone crate) display name.
root: StringWorkspace root (or lone crate) directory.
crates: Vec<CrateNode>The surveyed crates.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Survey
impl RefUnwindSafe for Survey
impl Send for Survey
impl Sync for Survey
impl Unpin for Survey
impl UnsafeUnpin for Survey
impl UnwindSafe for Survey
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