macro_rules! forward_host_clock_methods {
    (@ => |$this:ident| $fwd:expr) => { ... };
    (@ref => |$this:ident| $fwd:expr) => { ... };
    (@mut => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident)*) => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident),*) => |$this:ident| $fwd:expr) => { ... };
    (is_past_limit => |$this:ident| $fwd:expr) => { ... };
    (add_irq => |$this:ident| $fwd:expr) => { ... };
    (add_no_mreq => |$this:ident| $fwd:expr) => { ... };
    (add_m1 => |$this:ident| $fwd:expr) => { ... };
    (add_mreq => |$this:ident| $fwd:expr) => { ... };
    (add_io => |$this:ident| $fwd:expr) => { ... };
    (add_wait_states => |$this:ident| $fwd:expr) => { ... };
    (as_timestamp => |$this:ident| $fwd:expr) => { ... };
}
Expand description

Forward methods of Clock to a wrapped instance.

See macros for more information.