fn try_from()

in helpers/ticket_fields/src/description.rs [24:27]


    fn try_from(value: &str) -> Result<Self, Self::Error> {
        validate(value)?;
        Ok(Self(value.to_string()))
    }