// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.repo.strongRef // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[jacquard_derive::lexicon] #[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)] #[serde(rename_all = "camelCase")] pub struct StrongRef<'a> { #[serde(borrow)] pub cid: jacquard_common::types::string::Cid<'a>, #[serde(borrow)] pub uri: jacquard_common::types::string::AtUri<'a>, } impl jacquard_common::IntoStatic for StrongRef<'_> { type Output = StrongRef<'static>; fn into_static(self) -> Self::Output { StrongRef { cid: self.cid.into_static(), uri: self.uri.into_static(), extra_data: self.extra_data.into_static(), } } }