Trait jconfig::field::FieldMut [] [src]

pub trait FieldMut {
    fn set<V: Field>(&mut self, value: V);
    fn set_raw<K>(&mut self, name: K, value: RawValue)
    where
        K: Into<Cow<'static, str>>
; }

Trait for manipulating the contents of a field structure.

Required Methods

Set a field to the given value.

Set a field to the given raw value.

Implementors