// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: tools.ozone.signature.defs // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. pub mod find_correlation; pub mod find_related_accounts; pub mod search_accounts; #[jacquard_derive::lexicon] #[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)] #[serde(rename_all = "camelCase")] pub struct SigDetail<'a> { #[serde(borrow)] pub property: jacquard_common::CowStr<'a>, #[serde(borrow)] pub value: jacquard_common::CowStr<'a>, } impl jacquard_common::IntoStatic for SigDetail<'_> { type Output = SigDetail<'static>; fn into_static(self) -> Self::Output { SigDetail { property: self.property.into_static(), value: self.value.into_static(), extra_data: self.extra_data.into_static(), } } }