pub struct FormattedValue {
pub span: Span,
pub value: Box<Expression>,
pub conversion: Option<Conversion>,
pub format_spec: Box<Expression>,
}
Fields§
§span: Span
§value: Box<Expression>
§conversion: Option<Conversion>
§format_spec: Box<Expression>
Trait Implementations§
Source§impl Clone for FormattedValue
impl Clone for FormattedValue
Source§fn clone(&self) -> FormattedValue
fn clone(&self) -> FormattedValue
Returns a copy 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 FormattedValue
impl RefUnwindSafe for FormattedValue
impl Send for FormattedValue
impl Sync for FormattedValue
impl Unpin for FormattedValue
impl UnwindSafe for FormattedValue
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