pub struct CStyleForStatement {
pub span: Span,
pub initializer: Vec<CStyleForPart>,
pub condition: Vec<CStyleForPart>,
pub update: Vec<CStyleForPart>,
pub body: LoopBody,
}Fields§
§span: Span§initializer: Vec<CStyleForPart>§condition: Vec<CStyleForPart>§update: Vec<CStyleForPart>§body: LoopBodyTrait Implementations§
Source§impl Clone for CStyleForStatement
impl Clone for CStyleForStatement
Source§fn clone(&self) -> CStyleForStatement
fn clone(&self) -> CStyleForStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CStyleForStatement
impl Debug for CStyleForStatement
Source§impl<'de> Deserialize<'de> for CStyleForStatement
impl<'de> Deserialize<'de> for CStyleForStatement
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 CStyleForStatement
impl PartialEq for CStyleForStatement
Source§impl Serialize for CStyleForStatement
impl Serialize for CStyleForStatement
impl StructuralPartialEq for CStyleForStatement
Auto Trait Implementations§
impl Freeze for CStyleForStatement
impl RefUnwindSafe for CStyleForStatement
impl Send for CStyleForStatement
impl Sync for CStyleForStatement
impl Unpin for CStyleForStatement
impl UnsafeUnpin for CStyleForStatement
impl UnwindSafe for CStyleForStatement
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