pub struct VampireFormula {
pub span: Range<usize>,
pub name: String,
pub role: String,
pub formula: String,
}Expand description
Vampire 公式
Fields§
§span: Range<usize>§name: String§role: String§formula: StringTrait Implementations§
Source§impl Clone for VampireFormula
impl Clone for VampireFormula
Source§fn clone(&self) -> VampireFormula
fn clone(&self) -> VampireFormula
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 moreSource§impl Debug for VampireFormula
impl Debug for VampireFormula
Source§impl<'de> Deserialize<'de> for VampireFormula
impl<'de> Deserialize<'de> for VampireFormula
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VampireFormula
impl RefUnwindSafe for VampireFormula
impl Send for VampireFormula
impl Sync for VampireFormula
impl Unpin for VampireFormula
impl UnwindSafe for VampireFormula
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