pub enum ForClause {
Browse,
Json {
for_json: ForJson,
root: Option<String>,
include_null_values: bool,
without_array_wrapper: bool,
},
Xml {
for_xml: ForXml,
elements: bool,
binary_base64: bool,
root: Option<String>,
type: bool,
},
}
Expand description
FOR XML or FOR JSON clause, specific to MSSQL (formats the output of a query as XML or JSON)
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ForClause
impl<'de> Deserialize<'de> for ForClause
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 Ord for ForClause
impl Ord for ForClause
Source§impl PartialOrd for ForClause
impl PartialOrd for ForClause
Source§impl VisitMut for ForClause
impl VisitMut for ForClause
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for ForClause
impl StructuralPartialEq for ForClause
Auto Trait Implementations§
impl Freeze for ForClause
impl RefUnwindSafe for ForClause
impl Send for ForClause
impl Sync for ForClause
impl Unpin for ForClause
impl UnwindSafe for ForClause
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)