pub struct RepeatedPattern {
pub stretch_size: LayoutSize,
pub spacing: LayoutSize,
pub src_task_id: RenderTaskId,
pub src_is_opaque: bool,
}Fields§
§stretch_size: LayoutSize§spacing: LayoutSize§src_task_id: RenderTaskId§src_is_opaque: boolTrait Implementations§
Source§impl PatternBuilder for RepeatedPattern
impl PatternBuilder for RepeatedPattern
fn build( &self, _sub_rect: Option<DeviceRect>, _offset: LayoutVector2D, _ctx: &PatternBuilderContext<'_>, state: &mut PatternBuilderState<'_>, ) -> Pattern
Auto Trait Implementations§
impl Freeze for RepeatedPattern
impl RefUnwindSafe for RepeatedPattern
impl Send for RepeatedPattern
impl Sync for RepeatedPattern
impl Unpin for RepeatedPattern
impl UnsafeUnpin for RepeatedPattern
impl UnwindSafe for RepeatedPattern
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