[][src]Struct osproto::common::XdotY

pub struct XdotY<T>(pub T, pub T);

A pair X.Y where X and Y can be converted to/from a string and Y is optional.

Trait Implementations

impl<T: Clone> Clone for XdotY<T>[src]

impl<T: Copy> Copy for XdotY<T>[src]

impl<T> Debug for XdotY<T> where
    T: Debug
[src]

impl<T: Default> Default for XdotY<T>[src]

impl<'de, T> Deserialize<'de> for XdotY<T> where
    T: FromStr + Default,
    T::Err: Display
[src]

impl<T> Display for XdotY<T> where
    T: Display
[src]

impl<T: Eq> Eq for XdotY<T>[src]

impl<T> From<(T, T)> for XdotY<T>[src]

impl<T> FromStr for XdotY<T> where
    T: FromStr + Default,
    T::Err: Display
[src]

type Err = String

The associated error which can be returned from parsing.

impl<T: Hash> Hash for XdotY<T>[src]

impl<T: Ord> Ord for XdotY<T>[src]

impl<T: PartialEq> PartialEq<XdotY<T>> for XdotY<T>[src]

impl<T: PartialOrd> PartialOrd<XdotY<T>> for XdotY<T>[src]

impl<T> Serialize for XdotY<T> where
    T: Display
[src]

impl<T> StructuralEq for XdotY<T>[src]

impl<T> StructuralPartialEq for XdotY<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for XdotY<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for XdotY<T> where
    T: Send
[src]

impl<T> Sync for XdotY<T> where
    T: Sync
[src]

impl<T> Unpin for XdotY<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for XdotY<T> where
    T: UnwindSafe
[src]

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.