pub struct ItemReferenceParam {
pub type: Option<ItemReferenceParam_Type>,
pub id: String,
}
Expand description
An internal identifier for an item to reference.
Fields§
§type: Option<ItemReferenceParam_Type>
§id: String
The ID of the item to reference.
Trait Implementations§
Source§impl Clone for ItemReferenceParam
impl Clone for ItemReferenceParam
Source§fn clone(&self) -> ItemReferenceParam
fn clone(&self) -> ItemReferenceParam
Returns a copy 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 ItemReferenceParam
impl Debug for ItemReferenceParam
Source§impl Default for ItemReferenceParam
impl Default for ItemReferenceParam
Source§fn default() -> ItemReferenceParam
fn default() -> ItemReferenceParam
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ItemReferenceParam
impl RefUnwindSafe for ItemReferenceParam
impl Send for ItemReferenceParam
impl Sync for ItemReferenceParam
impl Unpin for ItemReferenceParam
impl UnwindSafe for ItemReferenceParam
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