derive_getters/
faultmsg.rsuse std::fmt;
#[derive(Debug)]
#[allow(dead_code)]
pub enum StructIs {
Unnamed,
Enum,
Union,
Unit,
}
impl fmt::Display for StructIs {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::Unnamed => write!(f, "an unnamed struct"),
Self::Enum => write!(f, "an enum"),
Self::Union => write!(f, "a union"),
Self::Unit => write!(f, "a unit struct"),
}
}
}
#[derive(Debug)]
#[allow(dead_code)]
pub enum Problem {
NotNamedStruct(StructIs),
UnnamedField,
InnerAttribute,
EmptyAttribute,
NoGrouping,
NonParensGrouping,
EmptyGrouping,
TokensFollowSkip,
TokensFollowNewName,
InvalidAttribute,
BotchedDocComment,
}
impl fmt::Display for Problem {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::NotNamedStruct(is) => {
write!(f, "type must be a named struct, not {}", is)
},
Self::UnnamedField => write!(f, "struct fields must be named"),
Self::InnerAttribute => {
write!(f, "attribute is an outer not inner attribute")
},
Self::EmptyAttribute => write!(f, "attribute has no tokens"),
Self::NoGrouping => write!(f, "attribute tokens must be grouped"),
Self::NonParensGrouping => {
write!(f, "attribute tokens must be within parenthesis")
},
Self::EmptyGrouping => {
write!(f, "no attribute tokens within parenthesis grouping")
},
Self::TokensFollowSkip => {
write!(f, "tokens are not meant to follow skip attribute")
},
Self::TokensFollowNewName => {
write!(f, "no further tokens must follow new name")
},
Self::InvalidAttribute => {
write!(f, "invalid attribute")
},
Self::BotchedDocComment => {
write!(f, "Doc comment is botched")
},
}
}
}