pub enum TextUrlField {
Text,
RefreshToken,
}
Expand description
Represents the sub-fields for a text_url
object.
This object typically provides expiring URLs for accessing story part content.
Variants§
Text
The direct, often temporary, URL to the story part’s text content.
RefreshToken
A token that can be used to refresh or obtain a new URL for the text content.
Trait Implementations§
Source§impl AuthRequiredFields for TextUrlField
impl AuthRequiredFields for TextUrlField
Source§fn auth_required_fields() -> Vec<Self>
fn auth_required_fields() -> Vec<Self>
Returns a vector of enum variants that require authentication. Read more
Source§fn auth_required(&self) -> bool
fn auth_required(&self) -> bool
Checks if a specific field instance requires authentication. Read more
Source§impl Clone for TextUrlField
impl Clone for TextUrlField
Source§fn clone(&self) -> TextUrlField
fn clone(&self) -> TextUrlField
Returns a duplicate 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 TextUrlField
impl Debug for TextUrlField
Source§impl DefaultableFields for TextUrlField
impl DefaultableFields for TextUrlField
Source§fn default_fields() -> Vec<Self>
fn default_fields() -> Vec<Self>
Returns a vector of the enum’s variants that should be used as the default.
Source§impl Display for TextUrlField
impl Display for TextUrlField
Source§impl IntoEnumIterator for TextUrlField
impl IntoEnumIterator for TextUrlField
Source§impl PartialEq for TextUrlField
impl PartialEq for TextUrlField
impl Copy for TextUrlField
impl Eq for TextUrlField
impl StructuralPartialEq for TextUrlField
Auto Trait Implementations§
impl Freeze for TextUrlField
impl RefUnwindSafe for TextUrlField
impl Send for TextUrlField
impl Sync for TextUrlField
impl Unpin for TextUrlField
impl UnwindSafe for TextUrlField
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.