pub trait DublinCore: PropertyInstanceGetter + PropertyInstanceSetter {
Show 30 methods // Provided methods fn get_dc_language(&self) -> Option<String> { ... } fn set_dc_language<S: Into<String>>(&self, v: S) { ... } fn get_dc_title(&self) -> Option<String> { ... } fn set_dc_title<S: Into<String>>(&self, v: S) { ... } fn get_dc_subject(&self) -> Option<String> { ... } fn set_dc_subject<S: Into<String>>(&self, v: S) { ... } fn get_dc_coverage(&self) -> Option<String> { ... } fn set_dc_coverage<S: Into<String>>(&self, v: S) { ... } fn get_dc_description(&self) -> Option<String> { ... } fn set_dc_description<S: Into<String>>(&self, v: S) { ... } fn get_dc_identifier(&self) -> Option<String> { ... } fn set_dc_identifier<S: Into<String>>(&self, v: S) { ... } fn get_dc_format(&self) -> Option<String> { ... } fn set_dc_format<S: Into<String>>(&self, v: S) { ... } fn get_dc_type(&self) -> Option<String> { ... } fn set_dc_type<S: Into<String>>(&self, v: S) { ... } fn get_dc_creator(&self) -> Option<String> { ... } fn set_dc_creator<S: Into<String>>(&self, v: S) { ... } fn get_dc_contributor(&self) -> Option<String> { ... } fn set_dc_contributor<S: Into<String>>(&self, v: S) { ... } fn get_dc_date(&self) -> Option<String> { ... } fn set_dc_date<S: Into<String>>(&self, v: S) { ... } fn get_dc_publisher(&self) -> Option<String> { ... } fn set_dc_publisher<S: Into<String>>(&self, v: S) { ... } fn get_dc_relation(&self) -> Option<String> { ... } fn set_dc_relation<S: Into<String>>(&self, v: S) { ... } fn get_dc_rights(&self) -> Option<String> { ... } fn set_dc_rights<S: Into<String>>(&self, v: S) { ... } fn get_dc_source(&self) -> Option<String> { ... } fn set_dc_source<S: Into<String>>(&self, v: S) { ... }
}

Provided Methods§

Source

fn get_dc_language(&self) -> Option<String>

Source

fn set_dc_language<S: Into<String>>(&self, v: S)

Source

fn get_dc_title(&self) -> Option<String>

Source

fn set_dc_title<S: Into<String>>(&self, v: S)

Source

fn get_dc_subject(&self) -> Option<String>

Source

fn set_dc_subject<S: Into<String>>(&self, v: S)

Source

fn get_dc_coverage(&self) -> Option<String>

Source

fn set_dc_coverage<S: Into<String>>(&self, v: S)

Source

fn get_dc_description(&self) -> Option<String>

Source

fn set_dc_description<S: Into<String>>(&self, v: S)

Source

fn get_dc_identifier(&self) -> Option<String>

Source

fn set_dc_identifier<S: Into<String>>(&self, v: S)

Source

fn get_dc_format(&self) -> Option<String>

Source

fn set_dc_format<S: Into<String>>(&self, v: S)

Source

fn get_dc_type(&self) -> Option<String>

Source

fn set_dc_type<S: Into<String>>(&self, v: S)

Source

fn get_dc_creator(&self) -> Option<String>

Source

fn set_dc_creator<S: Into<String>>(&self, v: S)

Source

fn get_dc_contributor(&self) -> Option<String>

Source

fn set_dc_contributor<S: Into<String>>(&self, v: S)

Source

fn get_dc_date(&self) -> Option<String>

Source

fn set_dc_date<S: Into<String>>(&self, v: S)

Source

fn get_dc_publisher(&self) -> Option<String>

Source

fn set_dc_publisher<S: Into<String>>(&self, v: S)

Source

fn get_dc_relation(&self) -> Option<String>

Source

fn set_dc_relation<S: Into<String>>(&self, v: S)

Source

fn get_dc_rights(&self) -> Option<String>

Source

fn set_dc_rights<S: Into<String>>(&self, v: S)

Source

fn get_dc_source(&self) -> Option<String>

Source

fn set_dc_source<S: Into<String>>(&self, v: S)

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§