pub struct NtRef {
pub entity_ref_type: Option<String>,
pub name: Option<String>,
pub value: Option<String>,
}Expand description
NtRef
Generic reference to another QuickBooks entity. Appears in many *Ref fields.
Provides optional type discriminator (entity_ref_type), display name, and underlying
value identifier returned by the API.
Fields§
§entity_ref_type: Option<String>§name: Option<String>§value: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for NtRef
impl<'de> Deserialize<'de> for NtRef
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 From<NtRef> for AttachableRef
impl From<NtRef> for AttachableRef
impl StructuralPartialEq for NtRef
Auto Trait Implementations§
impl Freeze for NtRef
impl RefUnwindSafe for NtRef
impl Send for NtRef
impl Sync for NtRef
impl Unpin for NtRef
impl UnwindSafe for NtRef
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