pub struct Producer {
pub active: Option<bool>,
pub failure_message: Option<String>,
pub id: Option<i64>,
pub init: Option<bool>,
pub name: Option<String>,
pub type: Option<String>,
}Fields§
§active: Option<bool>§failure_message: Option<String>§id: Option<i64>§init: Option<bool>§name: Option<String>§type: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Producer
impl<'de> Deserialize<'de> for Producer
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
impl StructuralPartialEq for Producer
Auto Trait Implementations§
impl Freeze for Producer
impl RefUnwindSafe for Producer
impl Send for Producer
impl Sync for Producer
impl Unpin for Producer
impl UnsafeUnpin for Producer
impl UnwindSafe for Producer
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