pub struct LogQueryTable {
pub name: Option<String>,
pub columns: Vec<LogQueryColumn>,
pub rows: Vec<Value>,
}Expand description
A table in the Log Analytics query result.
Azure API: loganalytics.v1.LogQueryTable
Reference: https://learn.microsoft.com/en-us/rest/api/loganalytics//LogQueryTable
Fields§
§name: Option<String>The name of the table (usually PrimaryResult)
columns: Vec<LogQueryColumn>The column schema for this table
rows: Vec<Value>The result rows (each row is a JSON array of values)
Trait Implementations§
Source§impl Clone for LogQueryTable
impl Clone for LogQueryTable
Source§fn clone(&self) -> LogQueryTable
fn clone(&self) -> LogQueryTable
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 LogQueryTable
impl Debug for LogQueryTable
Source§impl Default for LogQueryTable
impl Default for LogQueryTable
Source§fn default() -> LogQueryTable
fn default() -> LogQueryTable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogQueryTable
impl<'de> Deserialize<'de> for LogQueryTable
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 LogQueryTable
impl RefUnwindSafe for LogQueryTable
impl Send for LogQueryTable
impl Sync for LogQueryTable
impl Unpin for LogQueryTable
impl UnsafeUnpin for LogQueryTable
impl UnwindSafe for LogQueryTable
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