#[non_exhaustive]pub struct StatusDetailsBuilder { /* private fields */ }Expand description
A builder for StatusDetails.
Implementations§
Source§impl StatusDetailsBuilder
impl StatusDetailsBuilder
Sourcepub fn requested_change(self, input: impl Into<Box<Table>>) -> Self
pub fn requested_change(self, input: impl Into<Box<Table>>) -> Self
A Table object representing the requested changes.
Sourcepub fn set_requested_change(self, input: Option<Box<Table>>) -> Self
pub fn set_requested_change(self, input: Option<Box<Table>>) -> Self
A Table object representing the requested changes.
Sourcepub fn get_requested_change(&self) -> &Option<Box<Table>>
pub fn get_requested_change(&self) -> &Option<Box<Table>>
A Table object representing the requested changes.
Sourcepub fn view_validations(self, input: ViewValidation) -> Self
pub fn view_validations(self, input: ViewValidation) -> Self
Appends an item to view_validations.
To override the contents of this collection use set_view_validations.
A list of ViewValidation objects that contain information for an analytical engine to validate a view.
Sourcepub fn set_view_validations(self, input: Option<Vec<ViewValidation>>) -> Self
pub fn set_view_validations(self, input: Option<Vec<ViewValidation>>) -> Self
A list of ViewValidation objects that contain information for an analytical engine to validate a view.
Sourcepub fn get_view_validations(&self) -> &Option<Vec<ViewValidation>>
pub fn get_view_validations(&self) -> &Option<Vec<ViewValidation>>
A list of ViewValidation objects that contain information for an analytical engine to validate a view.
Sourcepub fn build(self) -> StatusDetails
pub fn build(self) -> StatusDetails
Consumes the builder and constructs a StatusDetails.
Trait Implementations§
Source§impl Clone for StatusDetailsBuilder
impl Clone for StatusDetailsBuilder
Source§fn clone(&self) -> StatusDetailsBuilder
fn clone(&self) -> StatusDetailsBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StatusDetailsBuilder
impl Debug for StatusDetailsBuilder
Source§impl Default for StatusDetailsBuilder
impl Default for StatusDetailsBuilder
Source§fn default() -> StatusDetailsBuilder
fn default() -> StatusDetailsBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for StatusDetailsBuilder
impl PartialEq for StatusDetailsBuilder
Source§fn eq(&self, other: &StatusDetailsBuilder) -> bool
fn eq(&self, other: &StatusDetailsBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatusDetailsBuilder
Auto Trait Implementations§
impl Freeze for StatusDetailsBuilder
impl RefUnwindSafe for StatusDetailsBuilder
impl Send for StatusDetailsBuilder
impl Sync for StatusDetailsBuilder
impl Unpin for StatusDetailsBuilder
impl UnsafeUnpin for StatusDetailsBuilder
impl UnwindSafe for StatusDetailsBuilder
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.