pub struct ExtensionInput {
pub name: String,
pub schema: Option<String>,
pub version: Option<String>,
}Expand description
Authored extension definition without opaque raw SQL metadata.
Fields§
§name: StringExtension name.
schema: Option<String>Optional database schema name.
version: Option<String>Optional pinned extension version.
Trait Implementations§
Source§impl Clone for ExtensionInput
impl Clone for ExtensionInput
Source§fn clone(&self) -> ExtensionInput
fn clone(&self) -> ExtensionInput
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 ExtensionInput
impl Debug for ExtensionInput
Source§impl<'de> Deserialize<'de> for ExtensionInput
impl<'de> Deserialize<'de> for ExtensionInput
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 ExtensionInput
impl PartialEq for ExtensionInput
impl StructuralPartialEq for ExtensionInput
Auto Trait Implementations§
impl Freeze for ExtensionInput
impl RefUnwindSafe for ExtensionInput
impl Send for ExtensionInput
impl Sync for ExtensionInput
impl Unpin for ExtensionInput
impl UnsafeUnpin for ExtensionInput
impl UnwindSafe for ExtensionInput
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