RingKernelArgs

Struct RingKernelArgs 

Source
pub(crate) struct RingKernelArgs {
    pub(crate) id: String,
    pub(crate) mode: Option<String>,
    pub(crate) grid_size: Option<u32>,
    pub(crate) block_size: Option<u32>,
    pub(crate) publishes_to: Option<String>,
}
Expand description

Attributes for the ring_kernel macro.

Fields§

§id: String

Kernel identifier.

§mode: Option<String>

Execution mode (persistent or event_driven).

§grid_size: Option<u32>

Grid size.

§block_size: Option<u32>

Block size.

§publishes_to: Option<String>

Target kernels this kernel publishes to.

Trait Implementations§

Source§

impl Debug for RingKernelArgs

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromMeta for RingKernelArgs

Source§

fn from_list(__items: &[NestedMeta]) -> Result<Self>

Create an instance from a list of nested meta items.
§

fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>

§

fn from_meta(item: &Meta) -> Result<Self, Error>

Create an instance from a syn::Meta by dispatching to the format-appropriate trait function. This generally should not be overridden by implementers. Read more
§

fn from_none() -> Option<Self>

When a field is omitted from a parent meta-item, from_none is used to attempt recovery before a missing field error is generated. Read more
§

fn from_word() -> Result<Self, Error>

Create an instance from the presence of the word in the attribute with no additional options specified.
§

fn from_value(value: &Lit) -> Result<Self, Error>

Create an instance from a literal value of either foo = "bar" or foo("bar"). This dispatches to the appropriate method based on the type of literal encountered, and generally should not be overridden by implementers. Read more
§

fn from_expr(expr: &Expr) -> Result<Self, Error>

§

fn from_char(value: char) -> Result<Self, Error>

Create an instance from a char literal in a value position.
§

fn from_string(value: &str) -> Result<Self, Error>

Create an instance from a string literal in a value position.
§

fn from_bool(value: bool) -> Result<Self, Error>

Create an instance from a bool literal in a value position.

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.