pub struct Renders { /* private fields */ }Implementations§
Source§impl Renders
impl Renders
pub fn new(repo: Repository, inputs: Inputs, quality: RenderQuality) -> Self
pub fn set_size(&mut self, w: i32, h: i32)
pub fn get_render(&mut self, index: i32) -> Result<&Render>
pub fn get_render_mut(&mut self, index: i32) -> Result<&mut Render>
pub fn remove_render(&mut self, index: i32)
pub fn remove_mapping(&mut self, index: i32)
pub fn length(&self) -> u32
pub fn peak(&self) -> usize
pub fn repo(&self) -> &Repository
pub fn repo_mut(&mut self) -> &mut Repository
pub fn inputs(&self) -> &Inputs
pub fn inputs_mut(&mut self) -> &mut Inputs
pub fn auto_zoom(&mut self) -> Result<bool>
Auto Trait Implementations§
impl !RefUnwindSafe for Renders
impl !Send for Renders
impl !Sync for Renders
impl !UnwindSafe for Renders
impl Freeze for Renders
impl Unpin for Renders
impl UnsafeUnpin for Renders
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.