[][src]Struct zfs_cmd_api::Zfs

pub struct Zfs { /* fields omitted */ }

Methods

impl Zfs[src]

pub fn list_from_builder(
    &self,
    builder: &ListBuilder
) -> Result<ZfsList, ZfsError>
[src]

pub fn list_basic(&self) -> Result<ZfsList, ZfsError>[src]

pub fn list(&self) -> ListExecutor[src]

pub fn destroy(
    &self,
    flags: BitFlags<DestroyFlags>,
    dataset: &str
) -> Result<Output, ZfsError>
[src]

NOTE: manual documents that if dataset is a bookmark, no flags are permitted

pub fn from_env_prefix(prefix: &'static str) -> Self[src]

pub fn send_resume(
    &self,
    receive_resume_token: &str,
    flags: BitFlags<SendFlags>
) -> Result<ZfsSend>
[src]

Resume sending a stream using receive_resume_token from the destination filesystem

flags here is constrained to [Penv]

pub fn recv_abort_incomplete(&self, dataset: &str) -> Result<(), ZfsError>[src]

pub fn send(
    &self,
    snapname: &str,
    from: Option<&str>,
    flags: BitFlags<SendFlags>
) -> Result<ZfsSend>
[src]

pub fn recv(
    &self,
    snapname: &str,
    set_props: &[(&str, &str)],
    origin: Option<&str>,
    exclude_props: &[&str],
    flags: BitFlags<RecvFlags>
) -> Result<ZfsRecv>
[src]

Trait Implementations

impl Clone for Zfs[src]

impl Default for Zfs[src]

impl Eq for Zfs[src]

impl PartialEq<Zfs> for Zfs[src]

impl Debug for Zfs[src]

impl StructuralPartialEq for Zfs[src]

impl StructuralEq for Zfs[src]

Auto Trait Implementations

impl Send for Zfs

impl Sync for Zfs

impl Unpin for Zfs

impl UnwindSafe for Zfs

impl RefUnwindSafe for Zfs

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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