pub struct RepeatPass {
pub body: Box<BasePass>,
}Expand description
A pass that iterates an internal pass until no further change.
Fields§
§body: Box<BasePass>The body of the loop, to be iterated until no further change.
Trait Implementations§
Source§impl Clone for RepeatPass
impl Clone for RepeatPass
Source§fn clone(&self) -> RepeatPass
fn clone(&self) -> RepeatPass
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 moreSource§impl Debug for RepeatPass
impl Debug for RepeatPass
Source§impl<'de> Deserialize<'de> for RepeatPass
impl<'de> Deserialize<'de> for RepeatPass
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
Source§impl From<RepeatPass> for BasePass
impl From<RepeatPass> for BasePass
Source§fn from(value: RepeatPass) -> Self
fn from(value: RepeatPass) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RepeatPass
impl PartialEq for RepeatPass
Source§impl Serialize for RepeatPass
impl Serialize for RepeatPass
impl StructuralPartialEq for RepeatPass
Auto Trait Implementations§
impl Freeze for RepeatPass
impl RefUnwindSafe for RepeatPass
impl Send for RepeatPass
impl Sync for RepeatPass
impl Unpin for RepeatPass
impl UnwindSafe for RepeatPass
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