#[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
impl StructuralPartialEq for ExternalUrlConfigBuilder
Auto Trait Implementations§
impl Freeze for ExternalUrlConfigBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.