#[non_exhaustive]pub struct SalesforceField {
pub name: String,
pub data_type: String,
pub nillable: bool,
/* private fields */
}
Expand description
Salesforce field.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
Field name.
data_type: String
The data type.
nillable: bool
Indicates whether the field can accept nil values.
Implementations§
Trait Implementations§
Source§impl Clone for SalesforceField
impl Clone for SalesforceField
Source§fn clone(&self) -> SalesforceField
fn clone(&self) -> SalesforceField
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 SalesforceField
impl Debug for SalesforceField
Source§impl Default for SalesforceField
impl Default for SalesforceField
Source§fn default() -> SalesforceField
fn default() -> SalesforceField
Returns the “default value” for a type. Read more
Source§impl Message for SalesforceField
impl Message for SalesforceField
Source§impl PartialEq for SalesforceField
impl PartialEq for SalesforceField
impl StructuralPartialEq for SalesforceField
Auto Trait Implementations§
impl Freeze for SalesforceField
impl RefUnwindSafe for SalesforceField
impl Send for SalesforceField
impl Sync for SalesforceField
impl Unpin for SalesforceField
impl UnwindSafe for SalesforceField
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