Trait CanSet

Source
pub trait CanSet: Writable {
    // Provided method
    fn set_optional(
        &mut self,
        value: <Property as Set>::ValueType,
    ) -> Result<()> { ... }
}

Provided Methods§

Source

fn set_optional(&mut self, value: <Property as Set>::ValueType) -> Result<()>

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§