1 2 3 4 5 6 7 8 9
use crate::{FileName, InvalidFileName}; impl TryFrom<String> for FileName { type Error = InvalidFileName; fn try_from(value: String) -> Result<Self, Self::Error> { FileName::try_create(value) } }