#[non_exhaustive]pub struct DebugQueryResult {
pub name: String,
pub type: String,
pub value: String,
/* private fields */
}Expand description
Contains a single result from the debug query.
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.name: StringSpecifies the name of the result. Available if provided with an explicit
alias using [AS] alias.
type: StringIndicates the data type of the result. For more information, see BigQuery data types.
value: StringRepresents the value of the result as a string.
Implementations§
Trait Implementations§
Source§impl Clone for DebugQueryResult
impl Clone for DebugQueryResult
Source§fn clone(&self) -> DebugQueryResult
fn clone(&self) -> DebugQueryResult
Returns a duplicate of the value. Read more
1.0.0 · 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 DebugQueryResult
impl Debug for DebugQueryResult
Source§impl Default for DebugQueryResult
impl Default for DebugQueryResult
Source§fn default() -> DebugQueryResult
fn default() -> DebugQueryResult
Returns the “default value” for a type. Read more
Source§impl Message for DebugQueryResult
impl Message for DebugQueryResult
Source§impl PartialEq for DebugQueryResult
impl PartialEq for DebugQueryResult
impl StructuralPartialEq for DebugQueryResult
Auto Trait Implementations§
impl Freeze for DebugQueryResult
impl RefUnwindSafe for DebugQueryResult
impl Send for DebugQueryResult
impl Sync for DebugQueryResult
impl Unpin for DebugQueryResult
impl UnsafeUnpin for DebugQueryResult
impl UnwindSafe for DebugQueryResult
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