pub struct Log {
pub created_on: Option<OffsetDateTime>,
pub id: Option<i32>,
pub last_changed_on: Option<OffsetDateTime>,
pub line_count: Option<i64>,
pub signed_content: Option<SignedUrl>,
pub url: Option<String>,
}Expand description
Log for a pipeline.
Fields§
§created_on: Option<OffsetDateTime>The date and time the log was created.
id: Option<i32>The ID of the log.
last_changed_on: Option<OffsetDateTime>The date and time the log was last changed.
line_count: Option<i64>The number of lines in the log.
signed_content: Option<SignedUrl>A signed url allowing limited-time anonymous access to private resources.
url: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Log
impl<'de> Deserialize<'de> for Log
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 Log
Auto Trait Implementations§
impl Freeze for Log
impl RefUnwindSafe for Log
impl Send for Log
impl Sync for Log
impl Unpin for Log
impl UnwindSafe for Log
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more