pub struct ResolveNotebookBuilder<'a, S: State> { /* private fields */ }Expand description
Builder for constructing an instance of this type
Implementations§
Source§impl<'a> ResolveNotebookBuilder<'a, Empty>
impl<'a> ResolveNotebookBuilder<'a, Empty>
Source§impl<'a, S> ResolveNotebookBuilder<'a, S>
impl<'a, S> ResolveNotebookBuilder<'a, S>
Sourcepub fn actor(
self,
value: impl Into<AtIdentifier<'a>>,
) -> ResolveNotebookBuilder<'a, SetActor<S>>
pub fn actor( self, value: impl Into<AtIdentifier<'a>>, ) -> ResolveNotebookBuilder<'a, SetActor<S>>
Set the actor field (required)
Source§impl<'a, S: State> ResolveNotebookBuilder<'a, S>
impl<'a, S: State> ResolveNotebookBuilder<'a, S>
Sourcepub fn entry_cursor(self, value: impl Into<Option<CowStr<'a>>>) -> Self
pub fn entry_cursor(self, value: impl Into<Option<CowStr<'a>>>) -> Self
Set the entryCursor field (optional)
Sourcepub fn maybe_entry_cursor(self, value: Option<CowStr<'a>>) -> Self
pub fn maybe_entry_cursor(self, value: Option<CowStr<'a>>) -> Self
Set the entryCursor field to an Option value (optional)
Source§impl<'a, S: State> ResolveNotebookBuilder<'a, S>
impl<'a, S: State> ResolveNotebookBuilder<'a, S>
Sourcepub fn entry_limit(self, value: impl Into<Option<i64>>) -> Self
pub fn entry_limit(self, value: impl Into<Option<i64>>) -> Self
Set the entryLimit field (optional)
Sourcepub fn maybe_entry_limit(self, value: Option<i64>) -> Self
pub fn maybe_entry_limit(self, value: Option<i64>) -> Self
Set the entryLimit field to an Option value (optional)
Source§impl<'a, S> ResolveNotebookBuilder<'a, S>
impl<'a, S> ResolveNotebookBuilder<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for ResolveNotebookBuilder<'a, S>
impl<'a, S> RefUnwindSafe for ResolveNotebookBuilder<'a, S>
impl<'a, S> Send for ResolveNotebookBuilder<'a, S>
impl<'a, S> Sync for ResolveNotebookBuilder<'a, S>
impl<'a, S> Unpin for ResolveNotebookBuilder<'a, S>
impl<'a, S> UnsafeUnpin for ResolveNotebookBuilder<'a, S>
impl<'a, S> UnwindSafe for ResolveNotebookBuilder<'a, S>
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