Function unregisterDataNotify [src]

Prototype

pub fn unregisterDataNotify( self: *const Ip6Config, data_type: DataType, event: Event, ) UnregisterDataNotifyError!void

Parameters

self: *const Ip6Configdata_type: DataTypeevent: Event

Possible Errors

InvalidParameter
NotFound
Unexpected UnexpectedError

Source

pub fn unregisterDataNotify( self: *const Ip6Config, data_type: DataType, event: Event, ) UnregisterDataNotifyError!void { switch (self._unregister_data_notify(self, data_type, event)) { .success => {}, .invalid_parameter => return Error.InvalidParameter, .not_found => return Error.NotFound, else => |status| return uefi.unexpectedStatus(status), } }