[][src]Struct creator_tools::types::FileProviderAction

pub struct FileProviderAction {
    pub activation_rule: Option<String>,
    pub identifier: Option<String>,
    pub name: Option<String>,
}

Fields

activation_rule: Option<String>

A predicate that determines whether a File Provider extension action appears in the context menu.

identifier: Option<String>

A unique identifier for a File Provider extension action.

name: Option<String>

The localized name for a File Provider extension action that appears in the context menu.

Trait Implementations

impl Clone for FileProviderAction[src]

impl Debug for FileProviderAction[src]

impl Default for FileProviderAction[src]

impl<'de> Deserialize<'de> for FileProviderAction[src]

impl PartialEq<FileProviderAction> for FileProviderAction[src]

impl Serialize for FileProviderAction[src]

impl StructuralPartialEq for FileProviderAction[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,