pub enum AttributeDirective {
Unified {
uuid1: u64,
uuid2: u64,
span: Range<usize>,
},
Managed {
span: Range<usize>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AttributeDirective
impl Clone for AttributeDirective
Source§fn clone(&self) -> AttributeDirective
fn clone(&self) -> AttributeDirective
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 AttributeDirective
impl Debug for AttributeDirective
Source§impl PartialEq for AttributeDirective
impl PartialEq for AttributeDirective
Source§impl PtxParser for AttributeDirective
impl PtxParser for AttributeDirective
Source§fn parse(stream: &mut PtxTokenStream<'_>) -> Result<Self, PtxParseError>
fn parse(stream: &mut PtxTokenStream<'_>) -> Result<Self, PtxParseError>
Parse an instance of
Self from the token stream.Source§impl PtxUnparser for AttributeDirective
impl PtxUnparser for AttributeDirective
impl Eq for AttributeDirective
impl StructuralPartialEq for AttributeDirective
Auto Trait Implementations§
impl Freeze for AttributeDirective
impl RefUnwindSafe for AttributeDirective
impl Send for AttributeDirective
impl Sync for AttributeDirective
impl Unpin for AttributeDirective
impl UnwindSafe for AttributeDirective
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