#[non_exhaustive]pub struct NotebookSessionSummaryBuilder { /* private fields */ }Expand description
A builder for NotebookSessionSummary.
Implementations§
source§impl NotebookSessionSummaryBuilder
impl NotebookSessionSummaryBuilder
sourcepub fn session_id(self, input: impl Into<String>) -> Self
pub fn session_id(self, input: impl Into<String>) -> Self
The notebook session ID.
sourcepub fn set_session_id(self, input: Option<String>) -> Self
pub fn set_session_id(self, input: Option<String>) -> Self
The notebook session ID.
sourcepub fn get_session_id(&self) -> &Option<String>
pub fn get_session_id(&self) -> &Option<String>
The notebook session ID.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time when the notebook session was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time when the notebook session was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time when the notebook session was created.
sourcepub fn build(self) -> NotebookSessionSummary
pub fn build(self) -> NotebookSessionSummary
Consumes the builder and constructs a NotebookSessionSummary.
Trait Implementations§
source§impl Clone for NotebookSessionSummaryBuilder
impl Clone for NotebookSessionSummaryBuilder
source§fn clone(&self) -> NotebookSessionSummaryBuilder
fn clone(&self) -> NotebookSessionSummaryBuilder
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 Default for NotebookSessionSummaryBuilder
impl Default for NotebookSessionSummaryBuilder
source§fn default() -> NotebookSessionSummaryBuilder
fn default() -> NotebookSessionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<NotebookSessionSummaryBuilder> for NotebookSessionSummaryBuilder
impl PartialEq<NotebookSessionSummaryBuilder> for NotebookSessionSummaryBuilder
source§fn eq(&self, other: &NotebookSessionSummaryBuilder) -> bool
fn eq(&self, other: &NotebookSessionSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NotebookSessionSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for NotebookSessionSummaryBuilder
impl Send for NotebookSessionSummaryBuilder
impl Sync for NotebookSessionSummaryBuilder
impl Unpin for NotebookSessionSummaryBuilder
impl UnwindSafe for NotebookSessionSummaryBuilder
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