Struct otter_api_tests::shapelib::ZCoord[]

pub struct ZCoord(_);

Implementations

impl ZCoord

pub fn clone_mut(&self) -> Mutable

impl ZCoord

pub fn as_str(&self) -> &str

pub fn to_string(&self) -> String

impl ZCoord

pub fn check_str(s: &str) -> Result<(), ParseError>

pub fn from_str(s: &str) -> Result<ZCoord, ParseError>

impl ZCoord

pub fn plus_offset(&self, offset: u32) -> Result<ZCoord, Overflow>

Trait Implementations

impl Clone for ZCoord

impl Debug for ZCoord

impl Default for ZCoord

impl<'de> Deserialize<'de> for ZCoord where
    ZCoord: FromStr,
    <ZCoord as FromStr>::Err: Display

impl Display for ZCoord

impl Drop for ZCoord

impl Eq for ZCoord

impl FromStr for ZCoord

type Err = ParseError

The associated error which can be returned from parsing.

impl Hash for ZCoord

impl Ord for ZCoord

impl PartialEq<ZCoord> for ZCoord

impl PartialOrd<ZCoord> for ZCoord

impl Send for ZCoord

impl<'de> Serialize for ZCoord where
    ZCoord: Display

impl Sync for ZCoord

impl<'_> TryFrom<&'_ Mutable> for ZCoord

type Error = Overflow

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ str> for ZCoord

type Error = ParseError

The type returned in the event of a conversion error.

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> OrdExt<T> for T where
    T: Ord + Clone
[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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>,