pub enum FrontendMessage {
Show 14 variants
Query(String),
Parse(Parse),
Bind(Bind),
Describe(DescribeTarget),
Execute(Execute),
Close(CloseTarget),
Flush,
Sync,
Terminate,
Password(PasswordMessage),
CopyData(Vec<u8>),
CopyDone,
CopyFail(String),
FunctionCall(FunctionCall),
}Variants§
Query(String)
Parse(Parse)
Bind(Bind)
Describe(DescribeTarget)
Execute(Execute)
Close(CloseTarget)
Flush
Sync
Terminate
Password(PasswordMessage)
CopyData(Vec<u8>)
CopyDone
CopyFail(String)
FunctionCall(FunctionCall)
Trait Implementations§
Source§impl Clone for FrontendMessage
impl Clone for FrontendMessage
Source§fn clone(&self) -> FrontendMessage
fn clone(&self) -> FrontendMessage
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 FrontendMessage
impl Debug for FrontendMessage
impl Eq for FrontendMessage
Source§impl PartialEq for FrontendMessage
impl PartialEq for FrontendMessage
impl StructuralPartialEq for FrontendMessage
Auto Trait Implementations§
impl Freeze for FrontendMessage
impl RefUnwindSafe for FrontendMessage
impl Send for FrontendMessage
impl Sync for FrontendMessage
impl Unpin for FrontendMessage
impl UnsafeUnpin for FrontendMessage
impl UnwindSafe for FrontendMessage
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