#[non_exhaustive]pub struct EmbedContentInputConfig {
pub source: Option<EmbedContentInputSource>,
pub rest: JsonMap,
}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.source: Option<EmbedContentInputSource>§rest: JsonMapImplementations§
Trait Implementations§
Source§impl Clone for EmbedContentInputConfig
impl Clone for EmbedContentInputConfig
Source§fn clone(&self) -> EmbedContentInputConfig
fn clone(&self) -> EmbedContentInputConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmbedContentInputConfig
impl Debug for EmbedContentInputConfig
Source§impl Default for EmbedContentInputConfig
impl Default for EmbedContentInputConfig
Source§fn default() -> EmbedContentInputConfig
fn default() -> EmbedContentInputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmbedContentInputConfig
impl<'de> Deserialize<'de> for EmbedContentInputConfig
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 PartialEq for EmbedContentInputConfig
impl PartialEq for EmbedContentInputConfig
Source§impl Serialize for EmbedContentInputConfig
impl Serialize for EmbedContentInputConfig
impl StructuralPartialEq for EmbedContentInputConfig
Auto Trait Implementations§
impl Freeze for EmbedContentInputConfig
impl RefUnwindSafe for EmbedContentInputConfig
impl Send for EmbedContentInputConfig
impl Sync for EmbedContentInputConfig
impl Unpin for EmbedContentInputConfig
impl UnsafeUnpin for EmbedContentInputConfig
impl UnwindSafe for EmbedContentInputConfig
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