pub struct AddressingHeaders {
pub to: Option<String>,
pub action: Option<String>,
pub message_id: Option<String>,
pub relates_to: Option<String>,
pub from: Option<String>,
pub reply_to: Option<String>,
pub fault_to: Option<String>,
}Expand description
WS-Addressing-Header. Spec §3.2.
Fields§
§to: Option<String>wsa:To — Endpoint-Reference des Empfaengers.
action: Option<String>wsa:Action — Operation-IRI.
message_id: Option<String>wsa:MessageID — eindeutige Message-Id.
relates_to: Option<String>wsa:RelatesTo — bezieht sich auf eine vorherige Message-Id
(typisch fuer Reply).
from: Option<String>wsa:From — Source-Endpoint.
reply_to: Option<String>wsa:ReplyTo — Endpoint, an den die Reply geschickt werden
soll.
fault_to: Option<String>wsa:FaultTo — Endpoint fuer Faults.
Trait Implementations§
Source§impl Clone for AddressingHeaders
impl Clone for AddressingHeaders
Source§fn clone(&self) -> AddressingHeaders
fn clone(&self) -> AddressingHeaders
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddressingHeaders
impl Debug for AddressingHeaders
Source§impl Default for AddressingHeaders
impl Default for AddressingHeaders
Source§fn default() -> AddressingHeaders
fn default() -> AddressingHeaders
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddressingHeaders
impl PartialEq for AddressingHeaders
Source§fn eq(&self, other: &AddressingHeaders) -> bool
fn eq(&self, other: &AddressingHeaders) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AddressingHeaders
impl StructuralPartialEq for AddressingHeaders
Auto Trait Implementations§
impl Freeze for AddressingHeaders
impl RefUnwindSafe for AddressingHeaders
impl Send for AddressingHeaders
impl Sync for AddressingHeaders
impl Unpin for AddressingHeaders
impl UnsafeUnpin for AddressingHeaders
impl UnwindSafe for AddressingHeaders
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