pub struct AutoReplyConfig {
pub enabled: bool,
pub reply_type: AutoReplyType,
pub reply_to: AprsCallsign,
pub delay_time: AutoReplyDelay,
pub message: ReplyMessage,
}Expand description
APRS auto-reply message configuration.
When enabled, the radio automatically replies to incoming APRS messages with a configured response.
Fields§
§enabled: boolEnable auto-reply.
reply_type: AutoReplyTypeAuto-reply type.
reply_to: AprsCallsignReply-to callsign filter (reply only to this callsign, or empty for any station).
delay_time: AutoReplyDelayDelay time before sending the reply (seconds).
message: ReplyMessageReply message text (up to 45 characters).
Trait Implementations§
Source§impl Clone for AutoReplyConfig
impl Clone for AutoReplyConfig
Source§fn clone(&self) -> AutoReplyConfig
fn clone(&self) -> AutoReplyConfig
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 AutoReplyConfig
impl Debug for AutoReplyConfig
Source§impl Default for AutoReplyConfig
impl Default for AutoReplyConfig
Source§impl PartialEq for AutoReplyConfig
impl PartialEq for AutoReplyConfig
impl Eq for AutoReplyConfig
impl StructuralPartialEq for AutoReplyConfig
Auto Trait Implementations§
impl Freeze for AutoReplyConfig
impl RefUnwindSafe for AutoReplyConfig
impl Send for AutoReplyConfig
impl Sync for AutoReplyConfig
impl Unpin for AutoReplyConfig
impl UnwindSafe for AutoReplyConfig
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