pub enum RemoteTarget {
Local,
Sandbox,
Release,
}
Variants§
Implementations§
Source§impl RemoteTarget
impl RemoteTarget
pub const fn s3_endpoint(&self) -> Option<&'static str>
pub const fn s3_processing_bucket(&self) -> Option<&'static str>
pub const fn s3_bucket(&self) -> Option<&'static str>
pub const fn google_credentials_env_name(&self) -> &'static str
pub const fn google_eventarc_media_uploaded_topic(&self) -> Option<&'static str>
pub const fn google_eventarc_media_processed_topic( &self, ) -> Option<&'static str>
pub fn media_watch_assigned_url(&self) -> Option<&'static str>
pub fn api_assigned_url(&self) -> String
pub fn api_url(&self) -> String
pub fn uploads_url(&self) -> String
pub fn media_url(&self) -> String
pub fn legacy_url(&self) -> String
pub fn pages_url(&self) -> String
pub fn pages_url_iframe(&self) -> String
pub fn frontend_url(&self) -> String
pub fn spa_url(&self, app: &str, path: &str) -> String
pub fn spa_iframe(&self, route_path: &str) -> String
pub fn static_url(&self, path: &str) -> String
pub const fn host(&self) -> Option<&'static str>
pub fn media_ui_url(&self) -> String
pub fn media_audio_url(&self) -> String
pub fn replace_media_ui<S: AsRef<str>>(&self, s: S) -> String
pub fn google_maps_url(&self) -> &'static str
pub fn jigzi_info_email(&self) -> &'static str
pub fn screenshot_url(&self) -> String
pub const fn cloud_functions_url(&self) -> &'static str
pub const fn as_str(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoteTarget
impl Clone for RemoteTarget
Source§fn clone(&self) -> RemoteTarget
fn clone(&self) -> RemoteTarget
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 RemoteTarget
impl Debug for RemoteTarget
Source§impl PartialEq for RemoteTarget
impl PartialEq for RemoteTarget
impl Copy for RemoteTarget
impl Eq for RemoteTarget
impl StructuralPartialEq for RemoteTarget
Auto Trait Implementations§
impl Freeze for RemoteTarget
impl RefUnwindSafe for RemoteTarget
impl Send for RemoteTarget
impl Sync for RemoteTarget
impl Unpin for RemoteTarget
impl UnwindSafe for RemoteTarget
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