pub struct HttpEndpoint {
pub uri: Option<String>,
}Expand description
Represents a HTTP endpoint destination.
This type is not used in any activity, and only used as part of another schema.
Fields§
§uri: Option<String>Required. The URI of the HTTP endpoint. The value must be a RFC2396 URI string. Examples: http://10.10.10.8:80/route, http://svc.us-central1.p.local:8080/. Only HTTP and HTTPS protocols are supported. The host can be either a static IP addressable from the VPC specified by the network config, or an internal DNS hostname of the service resolvable via Cloud DNS.
Trait Implementations§
Source§impl Clone for HttpEndpoint
impl Clone for HttpEndpoint
Source§fn clone(&self) -> HttpEndpoint
fn clone(&self) -> HttpEndpoint
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 HttpEndpoint
impl Debug for HttpEndpoint
Source§impl Default for HttpEndpoint
impl Default for HttpEndpoint
Source§fn default() -> HttpEndpoint
fn default() -> HttpEndpoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpEndpoint
impl<'de> Deserialize<'de> for HttpEndpoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for HttpEndpoint
impl Serialize for HttpEndpoint
impl Part for HttpEndpoint
Auto Trait Implementations§
impl Freeze for HttpEndpoint
impl RefUnwindSafe for HttpEndpoint
impl Send for HttpEndpoint
impl Sync for HttpEndpoint
impl Unpin for HttpEndpoint
impl UnwindSafe for HttpEndpoint
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