pub struct LogCollection {
pub logs: Vec<Log>,
pub signed_content: Option<SignedUrl>,
pub url: Option<String>,
}Expand description
A collection of logs.
Fields§
§logs: Vec<Log>The list of logs.
signed_content: Option<SignedUrl>A signed url allowing limited-time anonymous access to private resources.
url: Option<String>URL of the log.
Implementations§
Source§impl LogCollection
impl LogCollection
Trait Implementations§
Source§impl Clone for LogCollection
impl Clone for LogCollection
Source§fn clone(&self) -> LogCollection
fn clone(&self) -> LogCollection
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 LogCollection
impl Debug for LogCollection
Source§impl Default for LogCollection
impl Default for LogCollection
Source§fn default() -> LogCollection
fn default() -> LogCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogCollection
impl<'de> Deserialize<'de> for LogCollection
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 PartialEq for LogCollection
impl PartialEq for LogCollection
Source§impl Serialize for LogCollection
impl Serialize for LogCollection
impl StructuralPartialEq for LogCollection
Auto Trait Implementations§
impl Freeze for LogCollection
impl RefUnwindSafe for LogCollection
impl Send for LogCollection
impl Sync for LogCollection
impl Unpin for LogCollection
impl UnwindSafe for LogCollection
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