Enum nu_data::base::shape::InlineShape [−][src]
pub enum InlineShape {
Show 21 variants
Nothing,
Int(i64),
BigInt(BigInt),
Decimal(BigDecimal),
Range(Box<InlineRange>),
Bytesize(u64),
String(String),
Line(String),
ColumnPath(ColumnPath),
GlobPattern(String),
Boolean(bool),
Date(DateTime<FixedOffset>),
Duration(BigInt),
FilePath(PathBuf),
Binary(usize),
Row(Row),
Table(Vec<InlineShape>),
Block,
Error,
BeginningOfStream,
EndOfStream,
}Variants
Int(i64)Tuple Fields of Int
0: i64BigInt(BigInt)Tuple Fields of BigInt
0: BigIntDecimal(BigDecimal)Tuple Fields of Decimal
0: BigDecimalRange(Box<InlineRange>)Tuple Fields of Range
0: Box<InlineRange>Bytesize(u64)Tuple Fields of Bytesize
0: u64String(String)Tuple Fields of String
0: StringLine(String)Tuple Fields of Line
0: StringColumnPath(ColumnPath)Tuple Fields of ColumnPath
0: ColumnPathGlobPattern(String)Tuple Fields of GlobPattern
0: StringBoolean(bool)Tuple Fields of Boolean
0: boolDate(DateTime<FixedOffset>)Tuple Fields of Date
0: DateTime<FixedOffset>Duration(BigInt)Tuple Fields of Duration
0: BigIntFilePath(PathBuf)Tuple Fields of FilePath
0: PathBufBinary(usize)Tuple Fields of Binary
0: usizeRow(Row)Tuple Fields of Row
0: RowTable(Vec<InlineShape>)Tuple Fields of Table
0: Vec<InlineShape>Implementations
Trait Implementations
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for InlineShape
impl Send for InlineShape
impl Sync for InlineShape
impl Unpin for InlineShape
impl UnwindSafe for InlineShape
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.