pub enum PhoneServicePayload {
ExecuteResponse(CiscoIpPhoneResponse),
Error(CiscoIpPhoneError),
Submission(PhoneServiceSubmission),
Opaque(Vec<u8>),
}Expand description
Supported application payloads after envelope decoding.
Variants§
ExecuteResponse(CiscoIpPhoneResponse)
Error(CiscoIpPhoneError)
Submission(PhoneServiceSubmission)
Opaque(Vec<u8>)
A syntactically valid but unsupported XML schema, a non-XML response, or binary application data. The protocol boundary already limits it.
Trait Implementations§
Source§impl Clone for PhoneServicePayload
impl Clone for PhoneServicePayload
Source§fn clone(&self) -> PhoneServicePayload
fn clone(&self) -> PhoneServicePayload
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 PhoneServicePayload
impl Debug for PhoneServicePayload
impl Eq for PhoneServicePayload
Source§impl PartialEq for PhoneServicePayload
impl PartialEq for PhoneServicePayload
impl StructuralPartialEq for PhoneServicePayload
Auto Trait Implementations§
impl Freeze for PhoneServicePayload
impl RefUnwindSafe for PhoneServicePayload
impl Send for PhoneServicePayload
impl Sync for PhoneServicePayload
impl Unpin for PhoneServicePayload
impl UnsafeUnpin for PhoneServicePayload
impl UnwindSafe for PhoneServicePayload
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