MessageSubtypeId

Enum MessageSubtypeId 

Source
#[repr(u8)]
pub enum MessageSubtypeId {
Show 27 variants TcEnableScheduling = 1, TcDisableScheduling = 2, TcResetScheduling = 3, TcInsertActivity = 4, TcDeleteActivityByRequestId = 5, TcDeleteActivitiesByFilter = 6, TcTimeShiftActivityWithRequestId = 7, TcTimeShiftActivitiesByFilter = 8, TcTimeShiftAll = 15, TcDetailReportByRequestId = 9, TmDetailReport = 10, TcDetailReportByFilter = 11, TcSummaryReportByRequestId = 12, TmSummaryReport = 13, TcSummaryReportByFilter = 14, TcDetailReportAll = 16, TcSummaryReportAll = 17, TcReportSubscheduleStatus = 18, TmReportSubscheduleStatus = 19, TcEnableSubschedule = 20, TcDisableSubschedule = 21, TcCreateScheduleGroup = 22, TcDeleteScheduleGroup = 23, TcEnableScheduleGroup = 24, TcDisableScheduleGroup = 25, TcReportAllGroupsStatus = 26, TmReportAllGroupsStatus = 27,
}
Expand description

Scheduling service subtype ID.

Variants§

§

TcEnableScheduling = 1

Telecommand - Enable scheduling.

§

TcDisableScheduling = 2

Telecommand - Disable scheduling.

§

TcResetScheduling = 3

Telecommand - Reset scheduling.

§

TcInsertActivity = 4

Telecommand - Insert activity.

§

TcDeleteActivityByRequestId = 5

Telecommand - Delete activity by request ID.

§

TcDeleteActivitiesByFilter = 6

Telecommand - Delete activity by filter.

§

TcTimeShiftActivityWithRequestId = 7

Telecommand - Time shift activity by request ID.

§

TcTimeShiftActivitiesByFilter = 8

Telecommand - Time shift activity by filter.

§

TcTimeShiftAll = 15

Telecommand - Time shift all.

§

TcDetailReportByRequestId = 9

Telecommand - Detail report by request ID.

§

TmDetailReport = 10

Telemetry - Detail report.

§

TcDetailReportByFilter = 11

Telecommand - Detail report by filter.

§

TcSummaryReportByRequestId = 12

Telecommand - Summary report by request ID.

§

TmSummaryReport = 13

Telemetry - Summary report.

§

TcSummaryReportByFilter = 14

Telecommand - Summary report by filter.

§

TcDetailReportAll = 16

Telecommand - Detail report all.

§

TcSummaryReportAll = 17

Telecommand - Summary report all.

§

TcReportSubscheduleStatus = 18

Telecommand - Report subschedule status.

§

TmReportSubscheduleStatus = 19

Telemetry - Subschedule status report.

§

TcEnableSubschedule = 20

Telecommand - Enable subschedule.

§

TcDisableSubschedule = 21

Telecommand - Disable subschedule.

§

TcCreateScheduleGroup = 22

Telecommand - Create schedule group.

§

TcDeleteScheduleGroup = 23

Telecommand - Delete schedule group.

§

TcEnableScheduleGroup = 24

Telecommand - Enable schedule group.

§

TcDisableScheduleGroup = 25

Telecommand - Disable schedule group.

§

TcReportAllGroupsStatus = 26

Telecommand - Report all group status.

§

TmReportAllGroupsStatus = 27

Telemetry - All group status report.

Trait Implementations§

Source§

impl Clone for MessageSubtypeId

Source§

fn clone(&self) -> MessageSubtypeId

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MessageSubtypeId

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for MessageSubtypeId

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Format for MessageSubtypeId

Source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.
Source§

impl From<MessageSubtypeId> for u8

Source§

fn from(enum_value: MessageSubtypeId) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for MessageSubtypeId

Source§

fn eq(&self, other: &MessageSubtypeId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for MessageSubtypeId

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<u8> for MessageSubtypeId

Source§

type Error = TryFromPrimitiveError<MessageSubtypeId>

The type returned in the event of a conversion error.
Source§

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
Source§

impl TryFromPrimitive for MessageSubtypeId

Source§

impl Copy for MessageSubtypeId

Source§

impl Eq for MessageSubtypeId

Source§

impl StructuralPartialEq for MessageSubtypeId

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,