pub struct VersionDirective {
pub major: u32,
pub minor: u32,
pub span: Span,
}Expand description
Structured representation of the .version directive.
Syntax: .version major.minor // major, minor are integers
Example: .version 3.1 .version 3.0 .version 2.3
Fields§
§major: u32§minor: u32§span: SpanImplementations§
Trait Implementations§
Source§impl Clone for VersionDirective
impl Clone for VersionDirective
Source§fn clone(&self) -> VersionDirective
fn clone(&self) -> VersionDirective
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 VersionDirective
impl Debug for VersionDirective
Source§impl PartialEq for VersionDirective
impl PartialEq for VersionDirective
Source§fn eq(&self, other: &VersionDirective) -> bool
fn eq(&self, other: &VersionDirective) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PtxParser for VersionDirective
impl PtxParser for VersionDirective
Source§fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
Returns a parser function that can parse an instance of
Self.Source§impl PtxUnparser for VersionDirective
impl PtxUnparser for VersionDirective
Source§fn unparse_tokens(&self, tokens: &mut Vec<PtxToken>)
fn unparse_tokens(&self, tokens: &mut Vec<PtxToken>)
Append the PTX token sequence representing
self to tokens.Source§fn unparse_tokens_mode(&self, tokens: &mut Vec<PtxToken>, spaced: bool)
fn unparse_tokens_mode(&self, tokens: &mut Vec<PtxToken>, spaced: bool)
Append tokens, optionally inserting spacing tokens for readability.
Source§fn to_tokens(&self) -> Vec<PtxToken>
fn to_tokens(&self) -> Vec<PtxToken>
Convenience helper that returns the serialized PTX token stream.
Source§fn to_tokens_spaced(&self) -> Vec<PtxToken>
fn to_tokens_spaced(&self) -> Vec<PtxToken>
Convenience helper that returns the serialized PTX token stream with
spacing/newlines inserted for readability.
Source§impl Serialize for VersionDirective
impl Serialize for VersionDirective
Source§impl Spanned for VersionDirective
impl Spanned for VersionDirective
impl StructuralPartialEq for VersionDirective
Source§impl TreeDisplay for VersionDirective
impl TreeDisplay for VersionDirective
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
Auto Trait Implementations§
impl Freeze for VersionDirective
impl RefUnwindSafe for VersionDirective
impl Send for VersionDirective
impl Sync for VersionDirective
impl Unpin for VersionDirective
impl UnsafeUnpin for VersionDirective
impl UnwindSafe for VersionDirective
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