pub struct ResourceRow {
pub id: String,
pub kind: String,
pub name: String,
pub because: String,
pub needs: Vec<String>,
pub detail: String,
}Expand description
One row of the resource table — an infrastructure object, flattened for display.
Fields§
§id: String§kind: String§name: String§because: String§needs: Vec<String>§detail: StringAuto Trait Implementations§
impl Freeze for ResourceRow
impl RefUnwindSafe for ResourceRow
impl Send for ResourceRow
impl Sync for ResourceRow
impl Unpin for ResourceRow
impl UnwindSafe for ResourceRow
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