pub struct FieldName(/* private fields */);
Expand description
Wrapping struct to create a FieldName from a String.
FieldNames in the dBase format cannot exceed 11 bytes (not char).
§Examples
use typed_shapefile::FieldName;
use std::convert::TryFrom;
let name = FieldName::try_from("Small Name");
assert!(name.is_ok())
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldName
impl RefUnwindSafe for FieldName
impl Send for FieldName
impl Sync for FieldName
impl Unpin for FieldName
impl UnwindSafe for FieldName
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