pub struct AssociatedItemBean {
pub id: Option<String>,
pub name: Option<String>,
pub type_name: Option<String>,
pub parent_id: Option<String>,
pub parent_name: Option<String>,
}
Expand description
AssociatedItemBean : Details of an item associated with the changed record.
Fields§
§id: Option<String>
The ID of the associated record.
name: Option<String>
The name of the associated record.
type_name: Option<String>
The type of the associated record.
parent_id: Option<String>
The ID of the associated parent record.
parent_name: Option<String>
The name of the associated parent record.
Implementations§
Source§impl AssociatedItemBean
impl AssociatedItemBean
Sourcepub fn new() -> AssociatedItemBean
pub fn new() -> AssociatedItemBean
Details of an item associated with the changed record.
Trait Implementations§
Source§impl Clone for AssociatedItemBean
impl Clone for AssociatedItemBean
Source§fn clone(&self) -> AssociatedItemBean
fn clone(&self) -> AssociatedItemBean
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssociatedItemBean
impl Debug for AssociatedItemBean
Source§impl Default for AssociatedItemBean
impl Default for AssociatedItemBean
Source§fn default() -> AssociatedItemBean
fn default() -> AssociatedItemBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssociatedItemBean
impl<'de> Deserialize<'de> for AssociatedItemBean
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
Source§impl PartialEq for AssociatedItemBean
impl PartialEq for AssociatedItemBean
Source§impl Serialize for AssociatedItemBean
impl Serialize for AssociatedItemBean
impl StructuralPartialEq for AssociatedItemBean
Auto Trait Implementations§
impl Freeze for AssociatedItemBean
impl RefUnwindSafe for AssociatedItemBean
impl Send for AssociatedItemBean
impl Sync for AssociatedItemBean
impl Unpin for AssociatedItemBean
impl UnwindSafe for AssociatedItemBean
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