pub struct ResolveEgressPathV1Request {
pub domain: String,
pub source: Option<String>,
}Expand description
Query parameters for the resolve-egress-path endpoint.
{{since(‘dev’)}}
Fields§
§domain: StringDestination domain. Drives the MX lookup and is passed
through to the get_egress_path_config event callback.
source: Option<String>Egress source name. Defaults to “unspecified” if omitted.
Trait Implementations§
Source§impl ApplyToUrl for ResolveEgressPathV1Request
impl ApplyToUrl for ResolveEgressPathV1Request
fn apply_to_url(&self, url: &mut Url)
Source§impl ComposeSchema for ResolveEgressPathV1Request
impl ComposeSchema for ResolveEgressPathV1Request
Source§impl Debug for ResolveEgressPathV1Request
impl Debug for ResolveEgressPathV1Request
Source§impl<'de> Deserialize<'de> for ResolveEgressPathV1Request
impl<'de> Deserialize<'de> for ResolveEgressPathV1Request
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 IntoParams for ResolveEgressPathV1Request
impl IntoParams for ResolveEgressPathV1Request
Auto Trait Implementations§
impl Freeze for ResolveEgressPathV1Request
impl RefUnwindSafe for ResolveEgressPathV1Request
impl Send for ResolveEgressPathV1Request
impl Sync for ResolveEgressPathV1Request
impl Unpin for ResolveEgressPathV1Request
impl UnwindSafe for ResolveEgressPathV1Request
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more