pub struct AttachableRefType {
pub entity_ref: Option<ReferenceTypeType>,
pub line_info: Option<String>,
pub include_on_send: Option<bool>,
pub custom_field: Vec<CustomFieldType>,
pub attachable_ref_ex: Option<IntuitAnyTypeType>,
}Fields§
§entity_ref: Option<ReferenceTypeType>§line_info: Option<String>§include_on_send: Option<bool>§custom_field: Vec<CustomFieldType>§attachable_ref_ex: Option<IntuitAnyTypeType>Trait Implementations§
Source§impl Debug for AttachableRefType
impl Debug for AttachableRefType
Source§impl<'de> Deserializer<'de, AttachableRefType> for AttachableRefTypeDeserializer
impl<'de> Deserializer<'de, AttachableRefType> for AttachableRefTypeDeserializer
Source§fn init(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, AttachableRefType>
fn init( helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, AttachableRefType>
Source§fn next(
self,
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, AttachableRefType>
fn next( self, helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, AttachableRefType>
Source§fn finish(
self,
helper: &mut DeserializeHelper,
) -> Result<AttachableRefType, Error>
fn finish( self, helper: &mut DeserializeHelper, ) -> Result<AttachableRefType, Error>
Force the deserializer to finish. Read more
Source§impl WithDeserializer for AttachableRefType
impl WithDeserializer for AttachableRefType
Source§type Deserializer = AttachableRefTypeDeserializer
type Deserializer = AttachableRefTypeDeserializer
The deserializer to use for this type.
Source§fn init<'de>(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> Result<DeserializerOutput<'de, Self>, Error>
fn init<'de>( helper: &mut DeserializeHelper, event: Event<'de>, ) -> Result<DeserializerOutput<'de, Self>, Error>
Source§impl WithSerializer for AttachableRefType
impl WithSerializer for AttachableRefType
Source§type Serializer<'x> = AttachableRefTypeSerializer<'x>
type Serializer<'x> = AttachableRefTypeSerializer<'x>
The serializer to use for this type.
Source§fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<Self::Serializer<'ser>, Error>
fn serializer<'ser>( &'ser self, name: Option<&'ser str>, is_root: bool, ) -> Result<Self::Serializer<'ser>, Error>
Initializes a new serializer from the passed
value. Read moreAuto Trait Implementations§
impl Freeze for AttachableRefType
impl RefUnwindSafe for AttachableRefType
impl Send for AttachableRefType
impl Sync for AttachableRefType
impl Unpin for AttachableRefType
impl UnsafeUnpin for AttachableRefType
impl UnwindSafe for AttachableRefType
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