pub(crate) struct RingMessageField {
pub(crate) ident: Option<Ident>,
pub(crate) ty: Type,
pub(crate) id: bool,
pub(crate) correlation: bool,
pub(crate) priority: bool,
}Expand description
Field attributes for RingMessage.
Fields§
§ident: Option<Ident>§ty: Type§id: boolMark this field as the message ID.
correlation: boolMark this field as the correlation ID.
priority: boolMark this field as the priority.
Trait Implementations§
Source§impl Debug for RingMessageField
impl Debug for RingMessageField
Source§impl FromField for RingMessageField
impl FromField for RingMessageField
fn from_field(__field: &Field) -> Result<Self>
Auto Trait Implementations§
impl Freeze for RingMessageField
impl RefUnwindSafe for RingMessageField
impl !Send for RingMessageField
impl !Sync for RingMessageField
impl Unpin for RingMessageField
impl UnwindSafe for RingMessageField
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