Trait XmpType

Source
pub trait XmpType {
    // Required method
    fn write(&self, buf: &mut String);
}
Expand description

Primitive XMP types.

Required Methods§

Source

fn write(&self, buf: &mut String)

Write the value to the buffer.

Implementations on Foreign Types§

Source§

impl XmpType for &str

Source§

fn write(&self, buf: &mut String)

Source§

impl XmpType for bool

Source§

fn write(&self, buf: &mut String)

Source§

impl XmpType for f32

Source§

fn write(&self, buf: &mut String)

Source§

impl XmpType for f64

Source§

fn write(&self, buf: &mut String)

Source§

impl XmpType for i32

Source§

fn write(&self, buf: &mut String)

Source§

impl XmpType for i64

Source§

fn write(&self, buf: &mut String)

Implementors§