Struct dbase::FieldName[][src]

pub struct FieldName(_);
Expand description

Wrapping struct to create a FieldName from a String.

FieldNames in the dBase format cannot exceed 11 bytes (not char).

Examples

use dbase::FieldName;
use std::convert::TryFrom;

let name = FieldName::try_from("Small Name");
assert!(name.is_ok())

Trait Implementations

Formats the value using the given formatter. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.