pub struct SavedReport {
pub name: Option<String>,
pub title: Option<String>,
}Expand description
Representation of a saved report.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- reports get saved accounts (response)
Fields§
§name: Option<String>Output only. Resource name of the report. Format: accounts/{account}/reports/{report}
title: Option<String>Report title as specified by publisher.
Trait Implementations§
Source§impl Clone for SavedReport
impl Clone for SavedReport
Source§fn clone(&self) -> SavedReport
fn clone(&self) -> SavedReport
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 SavedReport
impl Debug for SavedReport
Source§impl Default for SavedReport
impl Default for SavedReport
Source§fn default() -> SavedReport
fn default() -> SavedReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SavedReport
impl<'de> Deserialize<'de> for SavedReport
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 Serialize for SavedReport
impl Serialize for SavedReport
impl ResponseResult for SavedReport
Auto Trait Implementations§
impl Freeze for SavedReport
impl RefUnwindSafe for SavedReport
impl Send for SavedReport
impl Sync for SavedReport
impl Unpin for SavedReport
impl UnwindSafe for SavedReport
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