pub struct ExtGroupComputation {
pub module_a: String,
pub module_b: String,
pub projective_resolution_length: usize,
pub computed_exts: Vec<String>,
}Fields§
§module_a: String§module_b: String§projective_resolution_length: usize§computed_exts: Vec<String>Implementations§
Source§impl ExtGroupComputation
impl ExtGroupComputation
pub fn new(a: &str, b: &str) -> Self
pub fn compute_ext_0(&self) -> String
pub fn compute_ext_1(&self) -> String
pub fn horseshoe_lemma(&self) -> String
pub fn global_dimension(&self) -> String
Trait Implementations§
Source§impl Clone for ExtGroupComputation
impl Clone for ExtGroupComputation
Source§fn clone(&self) -> ExtGroupComputation
fn clone(&self) -> ExtGroupComputation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExtGroupComputation
impl RefUnwindSafe for ExtGroupComputation
impl Send for ExtGroupComputation
impl Sync for ExtGroupComputation
impl Unpin for ExtGroupComputation
impl UnsafeUnpin for ExtGroupComputation
impl UnwindSafe for ExtGroupComputation
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