[][src]Struct devicemapper::TargetLine

pub struct TargetLine<T: TargetParams> {
    pub start: Sectors,
    pub length: Sectors,
    pub params: T,
}

One line of a device mapper table.

Fields

start: Sectors

The start of the segment

length: Sectors

The length of the segment

params: T

The target specific parameters

Methods

impl<T: TargetParams> TargetLine<T>[src]

pub fn new(start: Sectors, length: Sectors, params: T) -> TargetLine<T>[src]

Make a new TargetLine struct

Trait Implementations

impl<T: Eq + TargetParams> Eq for TargetLine<T>[src]

impl<T: PartialEq + TargetParams> PartialEq<TargetLine<T>> for TargetLine<T>[src]

impl<T: Clone + TargetParams> Clone for TargetLine<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Debug + TargetParams> Debug for TargetLine<T>[src]

Auto Trait Implementations

impl<T> Send for TargetLine<T> where
    T: Send

impl<T> Sync for TargetLine<T> where
    T: Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]