pub struct Encoder {
pub class: String,
pub id: i32,
pub index: i32,
pub name: String,
pub format: Option<String>,
}Expand description
Information about a given Encoder.
Fields§
§class: StringThe class of the item
id: i32The id of the item
index: i32The index of the item in internal application order
name: StringThe name of the item
format: Option<String>The data format created by the encoder
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Encoder
impl<'de> Deserialize<'de> for Encoder
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Encoder
impl RefUnwindSafe for Encoder
impl Send for Encoder
impl Sync for Encoder
impl Unpin for Encoder
impl UnwindSafe for Encoder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more