pub struct UnwindClause {
pub expr: Expr,
pub alias: String,
pub span: Span,
}Expand description
An UNWIND clause.
Fields§
§expr: Expr§alias: String§span: SpanTrait Implementations§
Source§impl Clone for UnwindClause
impl Clone for UnwindClause
Source§fn clone(&self) -> UnwindClause
fn clone(&self) -> UnwindClause
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 UnwindClause
impl Debug for UnwindClause
Source§impl<'de> Deserialize<'de> for UnwindClause
impl<'de> Deserialize<'de> for UnwindClause
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 UnwindClause
impl PartialEq for UnwindClause
Source§impl Serialize for UnwindClause
impl Serialize for UnwindClause
impl StructuralPartialEq for UnwindClause
Auto Trait Implementations§
impl Freeze for UnwindClause
impl RefUnwindSafe for UnwindClause
impl Send for UnwindClause
impl Sync for UnwindClause
impl Unpin for UnwindClause
impl UnsafeUnpin for UnwindClause
impl UnwindSafe for UnwindClause
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