parsing-rust/src/nested_type.rs
koalp d5402134ba
All checks were successful
continuous-integration/drone/push Build is passing
fix: apply rustfmt
2020-09-21 00:35:27 +02:00

48 lines
1.2 KiB
Rust

#[derive(Debug, Default, Clone)]
pub struct Type {
pub subtypes: Vec<Box<Type>>,
pub repr: String,
}
impl Type {
/// A function to print a Type struct as a python String
///
/// # Examples
///
/// Creating a simple type and converting it into a python type String
/// ```
/// # use parsing::nested_type::Type;
/// let my_type = Type{repr: "Type".into(), ..Default::default()};
/// my_type.to_python();
/// ```
pub fn to_python(&self) -> String {
match self.subtypes.len() {
0 => format!("{}", self.repr),
_ => format!(
"{}[{}]",
self.repr,
self.subtypes
.iter()
.map(|s| s.to_python())
.collect::<Vec<String>>()
.join(", ")
),
}
}
pub fn to_cpp(&self) -> String {
match self.subtypes.len() {
0 => format!("{}", self.repr),
_ => format!(
"{}<{}>",
self.repr,
self.subtypes
.iter()
.map(|s| s.to_python())
.collect::<Vec<String>>()
.join(", ")
),
}
}
}