pub struct ForeignTypeInfo {
pub type_system: Option<String>,
}Expand description
Metadata about the foreign data type definition such as the system in which the type is defined.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_system: Option<String>Required. Specifies the system which defines the foreign data type.
Trait Implementations§
Source§impl Clone for ForeignTypeInfo
impl Clone for ForeignTypeInfo
Source§fn clone(&self) -> ForeignTypeInfo
fn clone(&self) -> ForeignTypeInfo
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 ForeignTypeInfo
impl Debug for ForeignTypeInfo
Source§impl Default for ForeignTypeInfo
impl Default for ForeignTypeInfo
Source§fn default() -> ForeignTypeInfo
fn default() -> ForeignTypeInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ForeignTypeInfo
impl<'de> Deserialize<'de> for ForeignTypeInfo
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 Serialize for ForeignTypeInfo
impl Serialize for ForeignTypeInfo
impl Part for ForeignTypeInfo
Auto Trait Implementations§
impl Freeze for ForeignTypeInfo
impl RefUnwindSafe for ForeignTypeInfo
impl Send for ForeignTypeInfo
impl Sync for ForeignTypeInfo
impl Unpin for ForeignTypeInfo
impl UnwindSafe for ForeignTypeInfo
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