[][src]Trait amq_protocol::codegen::Named

pub trait Named {
    fn name(&self) -> String;
fn camel_name(&self) -> String;
fn snake_name(&self) -> String; }

Trait allowing us to get the name of an implementor in different forms

Required methods

fn name(&self) -> String

Get the raw name

fn camel_name(&self) -> String

Get the name converted to camel case

fn snake_name(&self) -> String

Get the name converted to snake case

Loading content...

Implementors

impl Named for AMQPClass[src]

impl Named for AMQPConstant[src]

impl Named for AMQPFlagArgument[src]

impl Named for AMQPMethod[src]

impl Named for AMQPProperty[src]

impl Named for AMQPValueArgument[src]

impl Named for AMQProtocolDefinition[src]

Loading content...