pub struct CastExpression {
pub type_name: Node<TypeName>,
pub expression: Box<Node<Expression>>,
}
Expand description
Cast expression
(type) expr
(C11 6.5.4)
Fields§
§type_name: Node<TypeName>
§expression: Box<Node<Expression>>
Trait Implementations§
Source§impl Clone for CastExpression
impl Clone for CastExpression
Source§fn clone(&self) -> CastExpression
fn clone(&self) -> CastExpression
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 moreSource§impl Debug for CastExpression
impl Debug for CastExpression
Source§impl PartialEq for CastExpression
impl PartialEq for CastExpression
impl StructuralPartialEq for CastExpression
Auto Trait Implementations§
impl Freeze for CastExpression
impl RefUnwindSafe for CastExpression
impl Send for CastExpression
impl Sync for CastExpression
impl Unpin for CastExpression
impl UnwindSafe for CastExpression
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