Enum nu_data::base::shape::InlineShape[][src]

pub enum InlineShape {
Show variants Nothing, Int(BigInt), Decimal(BigDecimal), Range(Box<InlineRange>), Bytesize(BigInt), 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

Nothing
Int(BigInt)
Decimal(BigDecimal)
Bytesize(BigInt)
String(String)
Line(String)
ColumnPath(ColumnPath)
GlobPattern(String)
Boolean(bool)
Duration(BigInt)
FilePath(PathBuf)
Binary(usize)
Row(Row)
Block
Error
BeginningOfStream
EndOfStream

Implementations

impl InlineShape[src]

pub fn from_primitive(primitive: &Primitive) -> InlineShape[src]

pub fn from_dictionary(dictionary: &Dictionary) -> InlineShape[src]

pub fn from_table<'a>(table: impl IntoIterator<Item = &'a Value>) -> InlineShape[src]

pub fn from_value<'a>(value: impl Into<&'a UntaggedValue>) -> InlineShape[src]

pub fn format_for_column(self, column: impl Into<Column>) -> FormatInlineShape[src]

pub fn format(self) -> FormatInlineShape[src]

pub fn format_bytes(
    bytesize: &BigInt,
    forced_format: Option<&str>
) -> (DbgDocBldr, String)
[src]

pub fn render_doc(doc: &DebugDocBuilder) -> String[src]

Trait Implementations

impl Clone for InlineShape[src]

impl Debug for InlineShape[src]

impl<'de> Deserialize<'de> for InlineShape[src]

impl Eq for InlineShape[src]

impl Hash for InlineShape[src]

impl Ord for InlineShape[src]

impl PartialEq<InlineShape> for InlineShape[src]

impl PartialOrd<InlineShape> for InlineShape[src]

impl Serialize for InlineShape[src]

impl StructuralEq for InlineShape[src]

impl StructuralPartialEq for InlineShape[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SpannedItem for T[src]

impl<T> TaggedItem for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,