Trait SetMyShortDescriptionSetters

Source
pub trait SetMyShortDescriptionSetters: HasPayload<Payload = SetMyShortDescription> + Sized {
    // Provided methods
    fn short_description<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn language_code<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetMyShortDescription

Provided Methods§

Source

fn short_description<T>(self, value: T) -> Self
where T: Into<String>,

Setter for short_description field.

Source

fn language_code<T>(self, value: T) -> Self
where T: Into<String>,

Setter for language_code field.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§