pub struct HttpApiImpl {
pub name: String,
pub target_aggregate: String,
pub target_entity: String,
pub qualified: String,
pub endpoint: HttpEndpoint,
pub flow: Option<Flow>,
}
Fields§
§name: String
§target_aggregate: String
§target_entity: String
§qualified: String
§endpoint: HttpEndpoint
§flow: Option<Flow>
Implementations§
Trait Implementations§
Source§impl Clone for HttpApiImpl
impl Clone for HttpApiImpl
Source§fn clone(&self) -> HttpApiImpl
fn clone(&self) -> HttpApiImpl
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 HttpApiImpl
impl Debug for HttpApiImpl
Source§impl Default for HttpApiImpl
impl Default for HttpApiImpl
Source§fn default() -> HttpApiImpl
fn default() -> HttpApiImpl
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpApiImpl
impl<'de> Deserialize<'de> for HttpApiImpl
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 PartialEq for HttpApiImpl
impl PartialEq for HttpApiImpl
Source§impl Serialize for HttpApiImpl
impl Serialize for HttpApiImpl
impl Eq for HttpApiImpl
impl StructuralPartialEq for HttpApiImpl
Auto Trait Implementations§
impl Freeze for HttpApiImpl
impl RefUnwindSafe for HttpApiImpl
impl Send for HttpApiImpl
impl Sync for HttpApiImpl
impl Unpin for HttpApiImpl
impl UnwindSafe for HttpApiImpl
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.