Home
last modified time | relevance | path

Searched defs:CachedProposal (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/src/group/
Dmessage_processor.rs366 pub struct CachedProposal { struct
373 impl CachedProposal { argument
387 pub fn cached_proposal(self) -> CachedProposal { in cached_proposal()
Dproposal_cache.rs43 pub struct CachedProposal { struct
54 pub(crate) proposals: HashMap<ProposalRef, CachedProposal>, argument
86 #[cfg(feature = "std")] proposals: HashMap<ProposalRef, CachedProposal>, in import() argument
87 #[cfg(not(feature = "std"))] proposals: Vec<(ProposalRef, CachedProposal)>, in import() argument
317 T: IntoIterator<Item = (ProposalRef, CachedProposal)>, in extend() argument
371 impl CachedProposal { implementation
874 ) -> Vec<(ProposalRef, CachedProposal)> { in filter_proposals() argument
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/src/group/proposal_filter/
Dbundle.rs455 I: IntoIterator<Item = (&'a ProposalRef, &'a CachedProposal)>, in from_iter()
473 I: IntoIterator<Item = &'a (ProposalRef, CachedProposal)>, in from_iter() argument
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/src/external_client/
Dgroup.rs226 pub fn insert_proposal(&mut self, proposal: CachedProposal) { in insert_proposal()