pub struct AstFrameBranch {
pub pattern: AstPattern,
pub variant_name: String,
pub fields: Vec<AstFieldItem>,
pub span: Option<Span>,
}Fields§
§pattern: AstPattern§variant_name: String§fields: Vec<AstFieldItem>§span: Option<Span>Trait Implementations§
Source§impl Clone for AstFrameBranch
impl Clone for AstFrameBranch
Source§fn clone(&self) -> AstFrameBranch
fn clone(&self) -> AstFrameBranch
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 AstFrameBranch
impl Debug for AstFrameBranch
Source§impl PartialEq for AstFrameBranch
impl PartialEq for AstFrameBranch
impl StructuralPartialEq for AstFrameBranch
Auto Trait Implementations§
impl Freeze for AstFrameBranch
impl RefUnwindSafe for AstFrameBranch
impl Send for AstFrameBranch
impl Sync for AstFrameBranch
impl Unpin for AstFrameBranch
impl UnsafeUnpin for AstFrameBranch
impl UnwindSafe for AstFrameBranch
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