Struct otter_api_tests::shapelib::FileData[][src]

pub struct FileData {
    pub item_spec: String,
    pub r_file_spec: (),
    pub extra_fields: HashMap<String, String, RandomState>,
    pub desc: String,
}

Contents of each line in files

This is not a key value list. The leading fields are found by splitting on whitespace, and the final field is the rest of the line.

Fields

item_spec: String

The core of the item name. See GroupDefn.

r_file_spec: ()extra_fields: HashMap<String, String, RandomState>

Extra fields, normally not present.

desc: String

Desscription. (Shown hn the game log, for example.) Will be HTML-escaped.

Trait Implementations

impl Debug for FileData[src]

impl<'de> Deserialize<'de> for FileData[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<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

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

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

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>,