pub struct Builder<T>(/* private fields */);Expand description
A builder for DocumentPanel
Implementations§
Source§impl Builder<DimensionStage>
impl Builder<DimensionStage>
Sourcepub fn dimension(self, dimension: NodeDimension) -> Builder<Complete>
pub fn dimension(self, dimension: NodeDimension) -> Builder<Complete>
Sets the dimension field.
Source§impl Builder<Complete>
impl Builder<Complete>
Sourcepub fn dimension(self, dimension: NodeDimension) -> Self
pub fn dimension(self, dimension: NodeDimension) -> Self
Sets the dimension field.
Sourcepub fn time_range_input_id(
self,
time_range_input_id: impl Into<Option<Uuid>>,
) -> Self
pub fn time_range_input_id( self, time_range_input_id: impl Into<Option<Uuid>>, ) -> Self
Sets the time_range_input_id field.
Sourcepub fn build(self) -> DocumentPanel
pub fn build(self) -> DocumentPanel
Consumes the builder, returning a DocumentPanel.
Trait Implementations§
Source§impl Default for Builder<DimensionStage>
impl Default for Builder<DimensionStage>
Source§impl From<DocumentPanel> for Builder<Complete>
impl From<DocumentPanel> for Builder<Complete>
Source§fn from(v: DocumentPanel) -> Self
fn from(v: DocumentPanel) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for Builder<T>where
T: Freeze,
impl<T> RefUnwindSafe for Builder<T>where
T: RefUnwindSafe,
impl<T> Send for Builder<T>where
T: Send,
impl<T> Sync for Builder<T>where
T: Sync,
impl<T> Unpin for Builder<T>where
T: Unpin,
impl<T> UnsafeUnpin for Builder<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Builder<T>where
T: UnwindSafe,
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