///
/// Func_void_CameraResult.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © 2025 Marc Rousavy @ Margelo
///

import NitroModules

/**
 * Wraps a Swift `(_ result: CameraResult) -> Void` as a class.
 * This class can be used from C++, e.g. to wrap the Swift closure as a `std::function`.
 */
public final class Func_void_CameraResult {
  public typealias bridge = margelo.nitro.multipleimagepicker.bridge.swift

  private let closure: (_ result: CameraResult) -> Void

  public init(_ closure: @escaping (_ result: CameraResult) -> Void) {
    self.closure = closure
  }

  @inline(__always)
  public func call(result: CameraResult) -> Void {
    self.closure(result)
  }

  /**
   * Casts this instance to a retained unsafe raw pointer.
   * This acquires one additional strong reference on the object!
   */
  @inline(__always)
  public func toUnsafe() -> UnsafeMutableRawPointer {
    return Unmanaged.passRetained(self).toOpaque()
  }

  /**
   * Casts an unsafe pointer to a `Func_void_CameraResult`.
   * The pointer has to be a retained opaque `Unmanaged<Func_void_CameraResult>`.
   * This removes one strong reference from the object!
   */
  @inline(__always)
  public static func fromUnsafe(_ pointer: UnsafeMutableRawPointer) -> Func_void_CameraResult {
    return Unmanaged<Func_void_CameraResult>.fromOpaque(pointer).takeRetainedValue()
  }
}
