pub trait EndpointOffsets {
// Required methods
fn start_offset(&self) -> i32;
fn end_offset(&self) -> i32;
}
Expand description
Defines a start/end offsets for use when shifting a Timing
’s boundaries.
Required Methods§
Sourcefn start_offset(&self) -> i32
fn start_offset(&self) -> i32
Offset to be applied to the Timing
’s start bound.
Sourcefn end_offset(&self) -> i32
fn end_offset(&self) -> i32
Offset to be applied to the Timing
’s end bound.