pub trait FloppyPermissions: Debug + Unpin + Send {
    // Required methods
    fn readonly(&self) -> bool;
    fn set_readonly(&mut self, readonly: bool);
}

Required Methods§

source

fn readonly(&self) -> bool

source

fn set_readonly(&mut self, readonly: bool)

Implementors§