[][src]Struct capra_core::common::tank::Tank

pub struct Tank { /* fields omitted */ }

A diving cylinder filled with some gas mix with some volume and service pressure.

Implementations

impl Tank[src]

pub fn new(gas: Gas, raw_volume: usize, service_pressure: usize) -> Self[src]

Return a new tank with the given parameters

Arguments

  • gas - Gas mix currently inside the tank.
  • raw_volume - Physical volume inside the tank.
  • service_pressure - Manufacturer specified service pressure of the tank.

Trait Implementations

impl Clone for Tank[src]

impl Copy for Tank[src]

impl Debug for Tank[src]

impl Eq for Tank[src]

impl Hash for Tank[src]

impl PartialEq<Tank> for Tank[src]

impl StructuralEq for Tank[src]

impl StructuralPartialEq for Tank[src]

Auto Trait Implementations

impl RefUnwindSafe for Tank

impl Send for Tank

impl Sync for Tank

impl Unpin for Tank

impl UnwindSafe for Tank

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