Enum genco::java::Java
[−]
[src]
pub enum Java<'el> {
Primitive {
boxed: &'static str,
primitive: &'static str,
},
Class(Type<'el>),
Local {
name: Cons<'el>,
},
Optional(Optional<'el>),
}Java token specialization.
Variants
PrimitivePrimitive type.
Fields of Primitive
boxed: &'static str | The boxed variant of the primitive type. |
primitive: &'static str | The primitive-primitive type. |
Class(Type<'el>)A class, with or without arguments, imported from somewhere.
LocalA local name with no specific qualification.
Fields of Local
name: Cons<'el> | Name of class. |
Optional(Optional<'el>)Optional type.
Methods
impl<'el> Java<'el>[src]
pub fn path<P: Into<Cons<'el>>>(&self, part: P) -> Java<'el>[src]
Extend the type with a nested path.
This discards any arguments associated with it.
pub fn with_arguments(&self, arguments: Vec<Java<'el>>) -> Java<'el>[src]
Add arguments to the given variable.
Only applies to classes, any other will return the same value.
pub fn as_raw(&self) -> Java<'el>[src]
Get the raw type.
A raw type is one without generic arguments.
pub fn as_boxed(&self) -> Java<'el>[src]
Get a guaranteed boxed version of a type.
pub fn equals(&self, other: &Java<'el>) -> bool[src]
Compare if two types are equal.
pub fn name(&self) -> Cons<'el>[src]
Get the name of the type.
pub fn package(&self) -> Option<Cons<'el>>[src]
Get the name of the type.
pub fn arguments(&self) -> Option<&[Java<'el>]>[src]
Get the arguments
pub fn is_optional(&self) -> bool[src]
Check if type is optional.
pub fn is_primitive(&self) -> bool[src]
Check if variable is primitive.
pub fn as_optional(&self) -> Option<&Optional<'el>>[src]
Get type as optional.
pub fn as_field(&self) -> Java<'el>[src]
Get the field type (includes optionality).
pub fn as_value(&self) -> Java<'el>[src]
Get the value type (strips optionality).
Trait Implementations
impl<'el> IntoTokens<'el, Java<'el>> for (Cons<'el>, Constructor<'el>)[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Field<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Argument<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Method<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Class<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Enum<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for Interface<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> IntoTokens<'el, Java<'el>> for BlockComment<'el>[src]
fn into_tokens(self) -> Tokens<'el, Java<'el>>[src]
Convert the type into tokens.
impl<'el> Debug for Java<'el>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<'el> Clone for Java<'el>[src]
fn clone(&self) -> Java<'el>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'el> Hash for Java<'el>[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<'el> PartialOrd for Java<'el>[src]
fn partial_cmp(&self, __arg_0: &Java<'el>) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<'el> Ord for Java<'el>[src]
fn cmp(&self, __arg_0: &Java<'el>) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<'el> PartialEq for Java<'el>[src]
fn eq(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Java<'el>) -> bool[src]
This method tests for !=.
impl<'el> Eq for Java<'el>[src]
impl<'el> From<Java<'el>> for Tokens<'el, Java<'el>>[src]
impl<'el> From<&'el Java<'el>> for Tokens<'el, Java<'el>>[src]
impl<'el> Custom for Java<'el>[src]
type Extra = Extra<'el>
Extra data associated with building a formatting element.
fn format(
&self,
out: &mut Formatter,
extra: &mut Self::Extra,
level: usize
) -> Result[src]
&self,
out: &mut Formatter,
extra: &mut Self::Extra,
level: usize
) -> Result
Format the custom element.
fn quote_string(out: &mut Formatter, input: &str) -> Result[src]
Performing quoting according to convention set by custom element.
fn write_file<'a>(
tokens: Tokens<'a, Self>,
out: &mut Formatter,
extra: &mut Self::Extra,
level: usize
) -> Result[src]
tokens: Tokens<'a, Self>,
out: &mut Formatter,
extra: &mut Self::Extra,
level: usize
) -> Result
Write a file according to convention by custom element.