[][src]Struct web_sys::FileSystemFlags

#[repr(transparent)]pub struct FileSystemFlags { /* fields omitted */ }

The FileSystemFlags dictionary.

This API requires the following crate features to be activated: FileSystemFlags

Implementations

impl FileSystemFlags[src]

pub fn new() -> Self[src]

Construct a new FileSystemFlags.

This API requires the following crate features to be activated: FileSystemFlags

pub fn create(&mut self, val: bool) -> &mut Self[src]

Change the create field of this object.

This API requires the following crate features to be activated: FileSystemFlags

pub fn exclusive(&mut self, val: bool) -> &mut Self[src]

Change the exclusive field of this object.

This API requires the following crate features to be activated: FileSystemFlags

Trait Implementations

impl AsRef<FileSystemFlags> for FileSystemFlags[src]

impl AsRef<JsValue> for FileSystemFlags[src]

impl AsRef<Object> for FileSystemFlags[src]

impl Clone for FileSystemFlags[src]

impl Debug for FileSystemFlags[src]

impl Deref for FileSystemFlags[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for FileSystemFlags[src]

impl From<FileSystemFlags> for JsValue[src]

impl From<FileSystemFlags> for Object[src]

impl From<JsValue> for FileSystemFlags[src]

impl FromWasmAbi for FileSystemFlags[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for FileSystemFlags[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a FileSystemFlags[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for FileSystemFlags[src]

impl OptionFromWasmAbi for FileSystemFlags[src]

impl OptionIntoWasmAbi for FileSystemFlags[src]

impl<'a> OptionIntoWasmAbi for &'a FileSystemFlags[src]

impl PartialEq<FileSystemFlags> for FileSystemFlags[src]

impl RefFromWasmAbi for FileSystemFlags[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<FileSystemFlags>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for FileSystemFlags[src]

impl StructuralPartialEq for FileSystemFlags[src]

impl WasmDescribe for FileSystemFlags[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> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.