[][src]Struct exif::SRational

pub struct SRational {
    pub num: i32,
    pub denom: i32,
}

A signed rational number, which is a pair of 32-bit signed integers.

Fields

num: i32denom: i32

Implementations

impl SRational[src]

pub fn to_f64(&self) -> f64[src]

Converts the value to an f64.

Trait Implementations

impl Clone for SRational[src]

impl Copy for SRational[src]

impl Debug for SRational[src]

impl Display for SRational[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Formatting parameters other than width are not supported.

impl From<(i32, i32)> for SRational[src]

impl From<SRational> for f64[src]

impl From<SRational> for f32[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> 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.