pub enum DelphiStatement {
Empty {
span: Range<usize>,
},
}Expand description
Represents various statements in Delphi language
Variants§
Trait Implementations§
Source§impl Clone for DelphiStatement
impl Clone for DelphiStatement
Source§fn clone(&self) -> DelphiStatement
fn clone(&self) -> DelphiStatement
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 DelphiStatement
impl Debug for DelphiStatement
Source§impl<'de> Deserialize<'de> for DelphiStatement
impl<'de> Deserialize<'de> for DelphiStatement
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
Source§impl PartialEq for DelphiStatement
impl PartialEq for DelphiStatement
Source§impl Serialize for DelphiStatement
impl Serialize for DelphiStatement
impl StructuralPartialEq for DelphiStatement
Auto Trait Implementations§
impl Freeze for DelphiStatement
impl RefUnwindSafe for DelphiStatement
impl Send for DelphiStatement
impl Sync for DelphiStatement
impl Unpin for DelphiStatement
impl UnwindSafe for DelphiStatement
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