pub struct CascadableTile {
pub id: String,
pub content: String,
pub dependencies: Vec<String>,
pub valid: bool,
pub version: u32,
}Expand description
A tile with dependency metadata.
Fields§
§id: String§content: String§dependencies: Vec<String>§valid: bool§version: u32Trait Implementations§
Source§impl Clone for CascadableTile
impl Clone for CascadableTile
Source§fn clone(&self) -> CascadableTile
fn clone(&self) -> CascadableTile
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 moreAuto Trait Implementations§
impl Freeze for CascadableTile
impl RefUnwindSafe for CascadableTile
impl Send for CascadableTile
impl Sync for CascadableTile
impl Unpin for CascadableTile
impl UnsafeUnpin for CascadableTile
impl UnwindSafe for CascadableTile
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