#[non_exhaustive]pub struct ExternalUrlConfigBuilder { /* private fields */ }
Expand description
A builder for ExternalUrlConfig
.
Implementations§
source§impl ExternalUrlConfigBuilder
impl ExternalUrlConfigBuilder
sourcepub fn access_url(self, input: impl Into<String>) -> Self
pub fn access_url(self, input: impl Into<String>) -> Self
The URL to access the application.
This field is required.sourcepub fn set_access_url(self, input: Option<String>) -> Self
pub fn set_access_url(self, input: Option<String>) -> Self
The URL to access the application.
sourcepub fn get_access_url(&self) -> &Option<String>
pub fn get_access_url(&self) -> &Option<String>
The URL to access the application.
sourcepub fn approved_origins(self, input: impl Into<String>) -> Self
pub fn approved_origins(self, input: impl Into<String>) -> Self
Appends an item to approved_origins
.
To override the contents of this collection use set_approved_origins
.
Additional URLs to allow list if different than the access URL.
sourcepub fn set_approved_origins(self, input: Option<Vec<String>>) -> Self
pub fn set_approved_origins(self, input: Option<Vec<String>>) -> Self
Additional URLs to allow list if different than the access URL.
sourcepub fn get_approved_origins(&self) -> &Option<Vec<String>>
pub fn get_approved_origins(&self) -> &Option<Vec<String>>
Additional URLs to allow list if different than the access URL.
sourcepub fn build(self) -> Result<ExternalUrlConfig, BuildError>
pub fn build(self) -> Result<ExternalUrlConfig, BuildError>
Consumes the builder and constructs a ExternalUrlConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ExternalUrlConfigBuilder
impl Clone for ExternalUrlConfigBuilder
source§fn clone(&self) -> ExternalUrlConfigBuilder
fn clone(&self) -> ExternalUrlConfigBuilder
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 Debug for ExternalUrlConfigBuilder
impl Debug for ExternalUrlConfigBuilder
source§impl Default for ExternalUrlConfigBuilder
impl Default for ExternalUrlConfigBuilder
source§fn default() -> ExternalUrlConfigBuilder
fn default() -> ExternalUrlConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ExternalUrlConfigBuilder
impl PartialEq for ExternalUrlConfigBuilder
source§fn eq(&self, other: &ExternalUrlConfigBuilder) -> bool
fn eq(&self, other: &ExternalUrlConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExternalUrlConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ExternalUrlConfigBuilder
impl Send for ExternalUrlConfigBuilder
impl Sync for ExternalUrlConfigBuilder
impl Unpin for ExternalUrlConfigBuilder
impl UnwindSafe for ExternalUrlConfigBuilder
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> 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>
Creates a shared type from an unshared type.