pub struct WovenResult {
pub code: String,
pub patterns_used: Vec<String>,
pub import_count: usize,
}Expand description
Result of weaving patterns together.
Fields§
§code: String§patterns_used: Vec<String>§import_count: usizeTrait Implementations§
Source§impl Clone for WovenResult
impl Clone for WovenResult
Source§fn clone(&self) -> WovenResult
fn clone(&self) -> WovenResult
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 WovenResult
impl RefUnwindSafe for WovenResult
impl Send for WovenResult
impl Sync for WovenResult
impl Unpin for WovenResult
impl UnsafeUnpin for WovenResult
impl UnwindSafe for WovenResult
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