pub struct TagViewBuilder<'a, S: State> { /* private fields */ }Expand description
Builder for constructing an instance of this type
Implementations§
Source§impl<'a> TagViewBuilder<'a, Empty>
impl<'a> TagViewBuilder<'a, Empty>
Source§impl<'a, S: State> TagViewBuilder<'a, S>
impl<'a, S: State> TagViewBuilder<'a, S>
Sourcepub fn entry_count(self, value: impl Into<Option<i64>>) -> Self
pub fn entry_count(self, value: impl Into<Option<i64>>) -> Self
Set the entryCount field (optional)
Sourcepub fn maybe_entry_count(self, value: Option<i64>) -> Self
pub fn maybe_entry_count(self, value: Option<i64>) -> Self
Set the entryCount field to an Option value (optional)
Source§impl<'a, S: State> TagViewBuilder<'a, S>
impl<'a, S: State> TagViewBuilder<'a, S>
Sourcepub fn notebook_count(self, value: impl Into<Option<i64>>) -> Self
pub fn notebook_count(self, value: impl Into<Option<i64>>) -> Self
Set the notebookCount field (optional)
Sourcepub fn maybe_notebook_count(self, value: Option<i64>) -> Self
pub fn maybe_notebook_count(self, value: Option<i64>) -> Self
Set the notebookCount field to an Option value (optional)
Source§impl<'a, S: State> TagViewBuilder<'a, S>
impl<'a, S: State> TagViewBuilder<'a, S>
Sourcepub fn recent_use_count(self, value: impl Into<Option<i64>>) -> Self
pub fn recent_use_count(self, value: impl Into<Option<i64>>) -> Self
Set the recentUseCount field (optional)
Sourcepub fn maybe_recent_use_count(self, value: Option<i64>) -> Self
pub fn maybe_recent_use_count(self, value: Option<i64>) -> Self
Set the recentUseCount field to an Option value (optional)
Source§impl<'a, S> TagViewBuilder<'a, S>
impl<'a, S> TagViewBuilder<'a, S>
Source§impl<'a, S: State> TagViewBuilder<'a, S>
impl<'a, S: State> TagViewBuilder<'a, S>
Sourcepub fn trending_score(self, value: impl Into<Option<i64>>) -> Self
pub fn trending_score(self, value: impl Into<Option<i64>>) -> Self
Set the trendingScore field (optional)
Sourcepub fn maybe_trending_score(self, value: Option<i64>) -> Self
pub fn maybe_trending_score(self, value: Option<i64>) -> Self
Set the trendingScore field to an Option value (optional)
Source§impl<'a, S> TagViewBuilder<'a, S>
impl<'a, S> TagViewBuilder<'a, S>
Sourcepub fn use_count(
self,
value: impl Into<i64>,
) -> TagViewBuilder<'a, SetUseCount<S>>
pub fn use_count( self, value: impl Into<i64>, ) -> TagViewBuilder<'a, SetUseCount<S>>
Set the useCount field (required)
Auto Trait Implementations§
impl<'a, S> Freeze for TagViewBuilder<'a, S>
impl<'a, S> RefUnwindSafe for TagViewBuilder<'a, S>
impl<'a, S> Send for TagViewBuilder<'a, S>
impl<'a, S> Sync for TagViewBuilder<'a, S>
impl<'a, S> Unpin for TagViewBuilder<'a, S>
impl<'a, S> UnsafeUnpin for TagViewBuilder<'a, S>
impl<'a, S> UnwindSafe for TagViewBuilder<'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