pub struct ImageBoxProcedural {
pub id: String,
pub parameters: HashMap<String, Scalar>,
pub images: Vec<String>,
pub vertices: Vec<ImageBoxProceduralVertex>,
pub triangles: Vec<[u32; 3]>,
pub fit_to_rect: bool,
}
Fields§
§id: String
§parameters: HashMap<String, Scalar>
§images: Vec<String>
§vertices: Vec<ImageBoxProceduralVertex>
§triangles: Vec<[u32; 3]>
§fit_to_rect: bool
Implementations§
source§impl ImageBoxProcedural
impl ImageBoxProcedural
pub fn new(id: impl ToString) -> Self
pub fn param(self, id: impl ToString, value: Scalar) -> Self
pub fn image(self, id: impl ToString) -> Self
pub fn triangle(self, vertices: [ImageBoxProceduralVertex; 3]) -> Self
pub fn quad(self, vertices: [ImageBoxProceduralVertex; 4]) -> Self
pub fn fit_to_rect(self, value: bool) -> Self
Trait Implementations§
source§impl Clone for ImageBoxProcedural
impl Clone for ImageBoxProcedural
source§fn clone(&self) -> ImageBoxProcedural
fn clone(&self) -> ImageBoxProcedural
Returns a copy 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 moresource§impl Debug for ImageBoxProcedural
impl Debug for ImageBoxProcedural
source§impl Default for ImageBoxProcedural
impl Default for ImageBoxProcedural
source§fn default() -> ImageBoxProcedural
fn default() -> ImageBoxProcedural
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ImageBoxProcedural
impl<'de> Deserialize<'de> for ImageBoxProcedural
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ImageBoxProcedural
impl RefUnwindSafe for ImageBoxProcedural
impl Send for ImageBoxProcedural
impl Sync for ImageBoxProcedural
impl Unpin for ImageBoxProcedural
impl UnwindSafe for ImageBoxProcedural
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)