Request and Reply Messaging Abstraction and first Consumers #136

Closed
muellerr wants to merge 95 commits from request-reply-messaging-mode-tree into main
Showing only changes of commit 4ed86ad3b9 - Show all commits

View File

@ -628,7 +628,9 @@ impl WritableToBeBytes for Params {
ParamsHeapless::EcssEnum(enumeration) => enumeration.raw_len(),
},
Params::Store(_) => 0,
#[cfg(feature = "alloc")]
Params::Vec(vec) => vec.len(),
#[cfg(feature = "alloc")]
Params::String(string) => string.len(),
}
}