pub struct ParsedFormula {
pub fingerprint: String,
pub canonical: String,
pub is_volatile: bool,
pub dependencies: Vec<String>,
}Fields§
§fingerprint: String§canonical: String§is_volatile: bool§dependencies: Vec<String>Trait Implementations§
Source§impl Clone for ParsedFormula
impl Clone for ParsedFormula
Source§fn clone(&self) -> ParsedFormula
fn clone(&self) -> ParsedFormula
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 ParsedFormula
impl RefUnwindSafe for ParsedFormula
impl Send for ParsedFormula
impl Sync for ParsedFormula
impl Unpin for ParsedFormula
impl UnwindSafe for ParsedFormula
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