Enum embassy_sync::pubsub::Error
source · pub enum Error {
MaximumSubscribersReached,
MaximumPublishersReached,
}
Expand description
Error type for the PubSubChannel
Variants§
MaximumSubscribersReached
All subscriber slots are used. To add another subscriber, first another subscriber must be dropped or the capacity of the channels must be increased.
MaximumPublishersReached
All publisher slots are used. To add another publisher, first another publisher must be dropped or the capacity of the channels must be increased.