fix(doc): filesystem-device-match will not return a filesystem when criteria is not provided

This commit is contained in:
2025-10-27 23:39:55 -04:00
parent 3acd0ec7d8
commit 0b6523906d

View File

@@ -19,7 +19,8 @@ use uefi_raw::Status;
/// on a particular filesystem. /// on a particular filesystem.
/// ///
/// This function only requires all the criteria to match. /// This function only requires all the criteria to match.
/// The fallback value can be used to provide a value if none is found. /// If no criteria is provided, no filesystem is matched.
/// The fallback value can be used to provide a value if no match is found.
#[derive(Serialize, Deserialize, Debug, Default, Clone)] #[derive(Serialize, Deserialize, Debug, Default, Clone)]
pub struct FilesystemDeviceMatchExtractor { pub struct FilesystemDeviceMatchExtractor {
/// Matches a filesystem that has the specified label. /// Matches a filesystem that has the specified label.