pub struct SenrenCxCrypt {
base: CxEncryption,
names_section_id: String,
}Available on crate features
kirikiri and kirikiri-arc only.Fields§
§base: CxEncryption§names_section_id: StringImplementations§
Source§impl SenrenCxCrypt
impl SenrenCxCrypt
pub fn new( base: BaseSchema, schema: &CxSchema, filename: &str, names_section_id: String, ) -> Result<Arc<Self>>
fn new_inner( base: BaseSchema, schema: &CxSchema, filename: &str, program_builder: Box<dyn ICxProgramBuilder + Send + Sync>, names_section_id: String, ) -> Result<Self>
fn read_yuzu_names<'a>( reader: Box<dyn ReadDebug + 'a>, unpacked_size: u32, ) -> Result<(HashMap<u32, String>, HashMap<String, String>)>
Trait Implementations§
Source§impl AsRef<BaseSchema> for SenrenCxCrypt
impl AsRef<BaseSchema> for SenrenCxCrypt
Source§fn as_ref(&self) -> &BaseSchema
fn as_ref(&self) -> &BaseSchema
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Debug for SenrenCxCrypt
impl Debug for SenrenCxCrypt
Source§impl ICxEncryption for SenrenCxCrypt
impl ICxEncryption for SenrenCxCrypt
Auto Trait Implementations§
impl Freeze for SenrenCxCrypt
impl !RefUnwindSafe for SenrenCxCrypt
impl Send for SenrenCxCrypt
impl Sync for SenrenCxCrypt
impl Unpin for SenrenCxCrypt
impl !UnwindSafe for SenrenCxCrypt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more