pub struct AppTarget {
pub actor: String,
}Expand description
Application Target - Format (0,2205)
Actor targeted by the request (e.g., recipient of payment)
§XDR Definition (sFlow Application)
/* Actor targetted by the request */
/* e.g. recipient of payment */
/* opaque = flow_data; enterprise = 0; format = 2205 */
struct app_target {
actor actor;
}ERRATUM: The specification is missing the struct keyword before the structure name,
which is inconsistent with XDR syntax conventions. The corrected version is shown above.
Fields§
§actor: StringBusiness level identifier (e.g., customer id, vendor id)
Trait Implementations§
impl Eq for AppTarget
impl StructuralPartialEq for AppTarget
Auto Trait Implementations§
impl Freeze for AppTarget
impl RefUnwindSafe for AppTarget
impl Send for AppTarget
impl Sync for AppTarget
impl Unpin for AppTarget
impl UnwindSafe for AppTarget
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