[][src]Struct fungus::sys::Copyfile

pub struct Copyfile { /* fields omitted */ }

Copyfile provides a flexible options for copying files

Methods

impl Copyfile[src]

Important traits for &'_ mut W
pub fn follow(&mut self, yes: bool) -> &mut Self[src]

Update the follow option. Default is disabled. When yes is true, links are followed.

Important traits for &'_ mut W
pub fn mode(&mut self, mode: u32) -> &mut Self[src]

Update the mode option. Default is disabled.

pub fn copy(&mut self) -> Result<PathBuf>[src]

Execute the copyfile operation with the current options.

Trait Implementations

impl Debug for Copyfile[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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,