#[non_exhaustive]pub struct ImageSource {
pub gcs_image_uri: String,
pub image_uri: String,
/* private fields */
}Expand description
External image source (Google Cloud Storage or web URL image location).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.gcs_image_uri: StringUse image_uri instead.
The Google Cloud Storage URI of the form
gs://bucket_name/object_name. Object versioning is not supported. See
Google Cloud Storage Request
URIs for more info.
image_uri: StringThe URI of the source image. Can be either:
-
A Google Cloud Storage URI of the form
gs://bucket_name/object_name. Object versioning is not supported. See Google Cloud Storage Request URIs for more info. -
A publicly-accessible image HTTP/HTTPS URL. When fetching images from HTTP/HTTPS URLs, Google cannot guarantee that the request will be completed. Your request may fail if the specified host denies the request (e.g. due to request throttling or DOS prevention), or if Google throttles requests to the site for abuse prevention. You should not depend on externally-hosted images for production applications.
When both gcs_image_uri and image_uri are specified, image_uri takes
precedence.
Implementations§
Source§impl ImageSource
impl ImageSource
pub fn new() -> Self
Sourcepub fn set_gcs_image_uri<T: Into<String>>(self, v: T) -> Self
pub fn set_gcs_image_uri<T: Into<String>>(self, v: T) -> Self
Sets the value of gcs_image_uri.
Sourcepub fn set_image_uri<T: Into<String>>(self, v: T) -> Self
pub fn set_image_uri<T: Into<String>>(self, v: T) -> Self
Sets the value of image_uri.
Trait Implementations§
Source§impl Clone for ImageSource
impl Clone for ImageSource
Source§fn clone(&self) -> ImageSource
fn clone(&self) -> ImageSource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more