fn try_from()

in helpers/ticket_fields/src/description.rs [15:18]


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