pub struct CreateTransformStmt {
pub replace: bool,
pub type_name: Option<Box<TypeName>>,
pub lang: Option<String>,
pub fromsql: Option<Box<ObjectWithArgs>>,
pub tosql: Option<Box<ObjectWithArgs>>,
}
Fields§
§replace: bool
§type_name: Option<Box<TypeName>>
§lang: Option<String>
§fromsql: Option<Box<ObjectWithArgs>>
§tosql: Option<Box<ObjectWithArgs>>
Trait Implementations§
Source§impl Debug for CreateTransformStmt
impl Debug for CreateTransformStmt
Source§impl<'de> Deserialize<'de> for CreateTransformStmt
impl<'de> Deserialize<'de> for CreateTransformStmt
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
Auto Trait Implementations§
impl Freeze for CreateTransformStmt
impl RefUnwindSafe for CreateTransformStmt
impl Send for CreateTransformStmt
impl Sync for CreateTransformStmt
impl Unpin for CreateTransformStmt
impl UnwindSafe for CreateTransformStmt
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