pub struct Notebook {
pub last_author: Option<String>,
pub name: Option<String>,
pub notebook_update_time: Option<DateTime<Utc>>,
pub service: Option<String>,
}Expand description
Represents a Jupyter notebook IPYNB file, such as a Colab Enterprise notebook file, that is associated with a finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
The user ID of the latest author to modify the notebook.
name: Option<String>The name of the notebook.
notebook_update_time: Option<DateTime<Utc>>The most recent time the notebook was updated.
service: Option<String>The source notebook service, for example, “Colab Enterprise”.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Notebook
impl<'de> Deserialize<'de> for Notebook
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 Part for Notebook
Auto Trait Implementations§
impl Freeze for Notebook
impl RefUnwindSafe for Notebook
impl Send for Notebook
impl Sync for Notebook
impl Unpin for Notebook
impl UnwindSafe for Notebook
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