pub struct ContributorInsightsSummary {
pub contributor_insights_status: Option<String>,
pub index_name: Option<String>,
pub table_name: Option<String>,
}
Expand description
Represents a Contributor Insights summary entry..
Fields§
§contributor_insights_status: Option<String>
Describes the current status for contributor insights for the given table and index, if applicable.
index_name: Option<String>
Name of the index associated with the summary, if any.
table_name: Option<String>
Name of the table associated with the summary.
Trait Implementations§
Source§impl Clone for ContributorInsightsSummary
impl Clone for ContributorInsightsSummary
Source§fn clone(&self) -> ContributorInsightsSummary
fn clone(&self) -> ContributorInsightsSummary
Returns a copy 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 ContributorInsightsSummary
impl Debug for ContributorInsightsSummary
Source§impl Default for ContributorInsightsSummary
impl Default for ContributorInsightsSummary
Source§fn default() -> ContributorInsightsSummary
fn default() -> ContributorInsightsSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContributorInsightsSummary
impl<'de> Deserialize<'de> for ContributorInsightsSummary
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
impl StructuralPartialEq for ContributorInsightsSummary
Auto Trait Implementations§
impl Freeze for ContributorInsightsSummary
impl RefUnwindSafe for ContributorInsightsSummary
impl Send for ContributorInsightsSummary
impl Sync for ContributorInsightsSummary
impl Unpin for ContributorInsightsSummary
impl UnwindSafe for ContributorInsightsSummary
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